@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Rayane.top Obsidian & Sunset Orange Design System */
  --bg-base: #070709;
  --bg-canvas: #0D0D12;
  --glass-bg: rgba(18, 18, 24, 0.75);
  --glass-card: rgba(14, 14, 20, 0.82);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 90, 0, 0.45);

  --accent-orange: #FF5A00;
  --accent-orange-hover: #FF7020;
  --accent-gradient: linear-gradient(135deg, #FF5A00 0%, #FF7A00 100%);
  --accent-glow: rgba(255, 90, 0, 0.25);
  --accent-dim: rgba(255, 90, 0, 0.12);

  --text-primary: #FFFFFF;
  --text-secondary: #9090A0;
  --text-muted: #555566;

  --dot-color: rgba(255, 255, 255, 0.05);
  --shadow-bento: 0 24px 48px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--glass-border);
  --shadow-glow: 0 12px 36px -8px rgba(255, 90, 0, 0.4);

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fira Code', monospace;
  --card-radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Rayane.top Signature Dotted Grid Background */
.bg-grid-overlay {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--dot-color) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* 3D Background Canvas */
#canvas-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* Main Layout Container — Expansive and Dignified */
.app-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  margin: 0 auto;
  padding: 36px 44px 90px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ==========================================================================
   1. Brand Header
   ========================================================================== */
.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  border-radius: 20px;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-bento);
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 10px rgba(255, 90, 0, 0.4));
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: rotate(-10deg) scale(1.08);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.brand-dot {
  color: var(--accent-orange);
  text-shadow: 0 0 14px var(--accent-orange);
  animation: pulseDot 3s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; text-shadow: 0 0 14px var(--accent-orange); }
  50% { opacity: 0.7; text-shadow: 0 0 6px var(--accent-orange); }
}

.brand-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 90, 0, 0.25);
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Folder Pill Button in Header */
.folder-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.folder-pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 90, 0, 0.35);
  color: #FFFFFF;
}

.pill-svg {
  color: var(--accent-orange);
}

.pill-path-text {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-action-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-action-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 90, 0, 0.4);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ==========================================================================
   2. Middle Hero Section: Spacious Command Center
   ========================================================================== */
.hero-center-box {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  padding: 48px 56px;
  border-radius: var(--card-radius);
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-bento);
  position: relative;
  overflow: hidden;
}

.hero-center-box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-text-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 90, 0, 0.28);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange);
}

.hero-title {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 640px;
}

/* The Pastebar */
.pastebar-container {
  width: 100%;
  max-width: 780px;
}

.pastebar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 9, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 8px 10px 8px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pastebar-inner:focus-within {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.pastebar-search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.pastebar-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 15px;
  font-family: var(--font-main);
}

.pastebar-input::placeholder {
  color: var(--text-muted);
  font-size: 14px;
}

.pastebar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-paste-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-paste-shortcut:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 90, 0, 0.35);
  color: #FFFFFF;
}

.btn-pull-stream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 14px;
  background: var(--accent-gradient);
  border: none;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s ease;
}

.btn-pull-stream:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(255, 90, 0, 0.55);
}

.btn-pull-stream:active {
  transform: translateY(0);
}

/* 3D Art Decoration */
.hero-art-decoration {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  animation: floatRig 6s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.hero-art-img:hover {
  transform: scale(1.05) rotate(2deg);
}

@keyframes floatRig {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}

/* ==========================================================================
   3. Bento Split Grid (Left: Stream / Right: History)
   ========================================================================== */
.bento-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.bento-card {
  border-radius: var(--card-radius);
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-bento);
  padding: 36px 42px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  transition: border-color 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.card-heading svg {
  color: var(--accent-orange);
}

.badge-status-online {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* ==========================================================================
   Idle Presentation Content
   ========================================================================== */
.idle-content-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.idle-heading {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.idle-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.engine-pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 90, 0, 0.35);
  transform: translateX(4px);
}

.pillar-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.pillar-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   Media Inspection Preview Card
   ========================================================================== */
.media-inspect-inner {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.media-thumb-box {
  position: relative;
  width: 220px;
  height: 124px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000000;
}

.media-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-dur-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: #FFFFFF;
}

.media-details-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-uploader-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.format-selection-area {
  margin-bottom: 32px;
}

.format-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.format-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.format-badge-notice {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-orange);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 90, 0, 0.25);
}

/* ==========================================================================
   Format Chips (Interactive Stream Quality Selectors)
   ========================================================================== */
.format-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.format-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 calc(25% - 12px);
  min-width: 135px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-align: left;
  user-select: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.format-chip:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 90, 0, 0.45);
  transform: translateY(-2px);
}

.format-chip.active,
.format-chip.selected {
  background: rgba(255, 90, 0, 0.12);
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px -2px rgba(255, 90, 0, 0.35), inset 0 0 14px rgba(255, 90, 0, 0.08);
  transform: translateY(-2px);
}

.chip-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  margin-bottom: 4px;
}

.chip-label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.chip-badge {
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.format-chip.active .chip-badge,
.format-chip.selected .chip-badge {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
  box-shadow: 0 0 8px rgba(255, 90, 0, 0.5);
}

.chip-sub-note {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.format-chip.active .chip-sub-note,
.format-chip.selected .chip-sub-note {
  color: #FFAA77;
}

.btn-start-download {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-gradient);
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s ease;
}

.btn-start-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(255, 90, 0, 0.55);
}

.btn-start-download:active {
  transform: translateY(0);
}

/* ==========================================================================
   Minimalist Floating Bottom Download Progress Bar (Single-Page Viewport)
   ========================================================================== */
.bottom-download-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  width: calc(100% - 48px);
  max-width: 640px;
  background: rgba(13, 13, 18, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 90, 0, 0.35);
  border-radius: 18px;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.9), 0 0 35px -5px rgba(255, 90, 0, 0.25);
  z-index: 1000;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

.bottom-download-bar.visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.bottom-download-bar.completed {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.9), 0 0 35px -5px rgba(16, 185, 129, 0.3);
}

.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}

.bottom-bar-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.bottom-bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 12px var(--accent-orange);
  flex-shrink: 0;
  animation: pulseDot 1.4s infinite ease-in-out;
}

.bottom-download-bar.completed .bottom-bar-dot {
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
  animation: none;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

.bottom-bar-texts {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.bottom-bar-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.bottom-bar-status {
  font-size: 11.5px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.bottom-download-bar.completed .bottom-bar-status {
  color: #34D399;
}

.bottom-bar-metrics {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bottom-bar-percent {
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent-orange);
}

.bottom-download-bar.completed .bottom-bar-percent {
  color: #10B981;
}

.bottom-bar-close {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bottom-bar-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.bottom-bar-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.bottom-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF5A00, #FFAA77);
  box-shadow: 0 0 10px #FF5A00;
  transition: width 0.25s ease;
}

.bottom-download-bar.completed .bottom-bar-fill {
  background: linear-gradient(90deg, #10B981, #34D399);
  box-shadow: 0 0 10px #10B981;
}

/* ==========================================================================
   Download Library Bento Box
   ========================================================================== */
.history-bento-card {
  max-height: 640px;
}

.history-count-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.history-dir-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.history-dir-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.history-dir-path {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-change-inline {
  background: transparent;
  border: none;
  color: var(--accent-orange);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.btn-change-inline:hover {
  color: var(--accent-orange-hover);
}

.history-list-box {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 6px;
}

.history-list-box::-webkit-scrollbar {
  width: 6px;
}

.history-list-box::-webkit-scrollbar-track {
  background: transparent;
}

.history-list-box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.history-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}

.history-item-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 90, 0, 0.35);
  transform: translateY(-1px);
}

.history-item-info {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.format-badge-pill {
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 90, 0, 0.25);
}

.history-file-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-file-size {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.history-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  text-align: center;
  color: var(--text-secondary);
}

.history-empty-icon {
  margin-bottom: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   4. Settings & Destination Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 580px;
  padding: 40px;
  border-radius: var(--card-radius);
  background: #0E0E15;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-title-wrap svg {
  color: var(--accent-orange);
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.setting-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setting-label-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.setting-label-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

.folder-picker-box {
  display: flex;
  gap: 10px;
}

.setting-input-path {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.setting-input-path:focus {
  border-color: var(--accent-orange);
}

.btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-browse:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 90, 0, 0.4);
}

.setting-status-hint {
  font-size: 12px;
  color: #4ade80;
  min-height: 16px;
}

.setting-select {
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.setting-select:focus {
  border-color: var(--accent-orange);
}

.badge-enforced {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 90, 0, 0.3);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  width: fit-content;
}

.dot-enforced {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange);
}

.modal-footer {
  margin-top: 10px;
}

.btn-save-settings {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-gradient);
  border: none;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s ease;
}

.btn-save-settings:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(255, 90, 0, 0.55);
}

/* ==========================================================================
   5. Onboarding / How to Use Modal
   ========================================================================== */
.onboarding-card {
  max-width: 680px;
}

.onboarding-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 8px 0;
}

.onboarding-step-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: all 0.25s ease;
}

.onboarding-step-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 90, 0, 0.35);
  transform: translateX(4px);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 90, 0, 0.3);
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 2px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-desc strong {
  color: #FFFFFF;
}

.onboarding-footer {
  margin-top: 10px;
}

/* ==========================================================================
   Responsive Adaptations — Tablet (1024px), Mobile (768px), Small (480px)
   ========================================================================== */

/* --- Tablet --- */
@media (max-width: 1024px) {
  .hero-center-box {
    grid-template-columns: 1fr;
    padding: 36px 32px;
  }
  .hero-art-decoration {
    display: none;
  }
  .bento-split-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .app-wrapper {
    padding: 16px 16px 100px;
    gap: 16px;
  }

  /* Header: compress to icon + name only */
  .brand-header {
    padding: 12px 16px;
    border-radius: 16px;
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-tag {
    display: none;
  }
  .header-right-actions {
    gap: 8px;
  }
  /* Hide folder pill and open-folder on mobile */
  .folder-pill-btn,
  #btn-open-folder {
    display: none !important;
  }
  .btn-action-ghost span {
    display: none;
  }

  /* Hero */
  .hero-center-box {
    padding: 24px 20px;
    gap: 16px;
  }
  .hero-badge {
    font-size: 10px;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 14px;
  }

  /* Pastebar: full width, stacked on small screens */
  .pastebar-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
  }
  .pastebar-input {
    font-size: 14px;
    min-width: 0;
    width: 100%;
  }
  .pastebar-actions {
    width: 100%;
    display: flex;
    gap: 8px;
  }
  .btn-paste-shortcut {
    flex: 1;
    justify-content: center;
  }
  .btn-pull-stream {
    flex: 2;
    justify-content: center;
  }

  /* Bento cards */
  .bento-card {
    border-radius: 20px;
    padding: 20px;
  }
  .media-inspect-inner {
    flex-direction: column;
    gap: 12px;
  }
  .media-thumb-box {
    width: 100%;
    max-height: 180px;
  }
  .media-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
  }

  /* Format chips: 2-column grid on mobile */
  .format-chips-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .format-chip {
    padding: 12px 10px;
  }

  /* Download button */
  .btn-start-download {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-radius: 16px;
  }

  /* Engine pillars: 1 column */
  .engine-pillars-grid {
    grid-template-columns: 1fr;
  }

  /* History bento */
  .history-dir-bar {
    flex-wrap: wrap;
    gap: 6px;
  }
  .history-dir-path {
    max-width: 100%;
    font-size: 11px;
  }

  /* Bottom bar: full-width edge-to-edge on mobile */
  .bottom-download-bar {
    width: calc(100% - 24px) !important;
    bottom: 12px !important;
    border-radius: 14px !important;
    left: 50% !important;
  }
  .bottom-bar-inner {
    padding: 12px 14px;
  }
  .bottom-bar-title {
    font-size: 13px;
  }
  .bottom-bar-status {
    font-size: 11px;
  }

  /* Modals: full-screen on mobile */
  .modal-card {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    padding: 24px 20px;
  }
  .onboarding-card {
    width: calc(100vw - 32px);
    max-width: 100%;
    border-radius: 24px;
    padding: 24px 20px;
  }

  /* Canvas 3D: reduce opacity on mobile to save battery */
  #canvas-container {
    opacity: 0.3;
  }
}

/* --- Small Mobile (< 480px) --- */
@media (max-width: 480px) {
  .app-wrapper {
    padding: 12px 12px 100px;
    gap: 12px;
  }
  .brand-header {
    padding: 10px 14px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-center-box {
    padding: 18px 16px;
  }
  .bento-card {
    padding: 16px;
    border-radius: 18px;
  }
  .format-chips-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .format-chip {
    padding: 10px 8px;
  }
  .chip-label {
    font-size: 12px;
  }
  .chip-badge {
    font-size: 9px;
    padding: 2px 5px;
  }
  .chip-sub-note {
    font-size: 10px;
  }
  .btn-start-download {
    font-size: 14px;
    padding: 14px;
  }
  .hero-badge {
    display: none;
  }
  .pastebar-search-icon {
    display: none;
  }
}

/* ==========================================================================
   Downloads Showcase & Bento App Hub
   ========================================================================== */
.download-showcase-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 10px 0 20px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 90, 0, 0.1);
  border: 1px solid rgba(255, 90, 0, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #FF7020;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.section-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF5A00;
  box-shadow: 0 0 10px #FF5A00;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
}

.download-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.download-card {
  position: relative;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-bento);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}

.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 0, 0.45);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.85), 0 0 30px -5px rgba(255, 90, 0, 0.25);
}

.download-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.download-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.platform-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.windows-icon-box {
  color: #00ADEF;
  border-color: rgba(0, 173, 239, 0.25);
  background: rgba(0, 173, 239, 0.08);
}

.android-icon-box {
  color: #3DDC84;
  border-color: rgba(61, 220, 132, 0.25);
  background: rgba(61, 220, 132, 0.08);
}

.platform-meta {
  flex: 1;
}

.platform-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.platform-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-top: 2px;
}

.version-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-orange);
  background: rgba(255, 90, 0, 0.12);
  border: 1px solid rgba(255, 90, 0, 0.25);
  padding: 4px 10px;
  border-radius: 8px;
}

.platform-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #C0C0D0;
}

.p-feature-item svg {
  color: var(--accent-orange);
  flex-shrink: 0;
}

.download-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-download-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 14px;
  background: var(--accent-gradient);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px -4px rgba(255, 90, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-download-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(255, 90, 0, 0.65);
}

.btn-download-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D0D0E0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-download-secondary:hover {
  background: rgba(255, 90, 0, 0.1);
  border-color: rgba(255, 90, 0, 0.4);
  color: #FFFFFF;
}

.btn-size-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(0, 0, 0, 0.28);
  padding: 2px 7px;
  border-radius: 6px;
  font-weight: 500;
}

/* Nav header links */
.header-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.btn-header-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 90, 0, 0.14);
  border: 1px solid rgba(255, 90, 0, 0.4);
  color: #FF7020;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-header-cta:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
}

/* Bento Features Showcase Grid */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}

.features-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) {
  .features-bento-grid {
    grid-template-columns: 1fr;
  }
  .header-nav-links {
    display: none;
  }
}

.feature-bento-item {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 26px 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-bento-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, 0.4);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 90, 0, 0.12);
  border: 1px solid rgba(255, 90, 0, 0.25);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Specs comparison table */
.specs-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.specs-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: var(--glass-card);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.specs-table th {
  padding: 16px 20px;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
}

.specs-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #D0D0E0;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table .col-rpull {
  color: #FF7020;
  font-weight: 700;
}

/* Hero quick action buttons */
.hero-quick-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 6px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px -4px rgba(255, 90, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -4px rgba(255, 90, 0, 0.65);
}

.hero-btn-android {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 220, 132, 0.12);
  border: 1px solid rgba(61, 220, 132, 0.35);
  color: #3DDC84;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-btn-android:hover {
  background: rgba(61, 220, 132, 0.22);
  transform: translateY(-2px);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #D0D0E0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* 3D Tilt container styling */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

/* Android download button in card */
.btn-download-android {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2EAF66 0%, #3DDC84 100%);
  color: #070709;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px -4px rgba(61, 220, 132, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-download-android:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(61, 220, 132, 0.55);
}

/* Footer Section */
.app-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 20px;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #FF7020;
}

.footer-badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(61, 220, 132, 0.1);
  border: 1px solid rgba(61, 220, 132, 0.25);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #3DDC84;
}

.dot-online {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3DDC84;
  box-shadow: 0 0 8px #3DDC84;
}


