/* ==========================================================================
   🎨 iDownThis & Akkori Official Design System Stylesheet
   ========================================================================== */

:root {
  /* Brand Colors */
  --akkori-deep-purple: #6e38ff;
  --akkori-purple: #885cf6;
  --akkori-purple-light: #a78bfa;
  --akkori-soft-violet: #c4b5fd;
  --akkori-cyan: #22d3ee;
  --akkori-pink: #ec4899;
  --akkori-blue: #3882f6;
  
  /* Surfaces & Backgrounds */
  --bg-app: #080816;
  --bg-surface: rgba(14, 18, 36, 0.75);
  --bg-card: rgba(20, 26, 52, 0.65);
  --bg-card-hover: rgba(28, 36, 72, 0.85);
  --bg-input-capsule: #ffffff;
  --text-dark: #0f172a;

  /* Text Colors */
  --text-pure-white: #ffffff;
  --text-heading: #f8fafc;
  --text-body: #94a3b8;
  --text-muted: #64748b;

  /* Borders & Glows */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-active: rgba(110, 56, 255, 0.6);
  --glow-akkori: 0 0 40px rgba(110, 56, 255, 0.35);
  --glow-visor: 0 0 25px rgba(34, 211, 238, 0.6);
  --shadow-omnibox: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(110, 56, 255, 0.25);

  /* Typography */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-app);
  color: var(--text-heading);
  font-family: var(--font-ui);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

/* Ambient Glow Background */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.3;
}

.glow-top {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--akkori-deep-purple) 0%, rgba(110, 56, 255, 0) 70%);
  top: -150px;
  right: 15%;
}

.glow-bottom {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--akkori-pink) 0%, rgba(236, 72, 153, 0) 70%);
  bottom: -100px;
  left: 5%;
  opacity: 0.2;
}

#ambient-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* App Layout */
.app-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  width: 100%;
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s var(--ease-spring);
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-pure-white);
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--akkori-purple-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-pure-white);
}

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

/* Language Selector Dropdown */
.lang-selector-wrapper {
  position: relative;
}

.lang-btn-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-pure-white);
  padding: 8px 12px;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.lang-btn-current:hover {
  background: rgba(110, 56, 255, 0.2);
  border-color: rgba(110, 56, 255, 0.4);
  transform: translateY(-1px);
}

.lang-chevron {
  transition: transform 0.2s ease;
  color: #94a3b8;
}

.lang-selector-wrapper.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15, 18, 38, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 3px;
  min-width: 135px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(110, 56, 255, 0.25);
  backdrop-filter: blur(20px);
  z-index: 1000;
}

.lang-selector-wrapper.open .lang-dropdown-menu {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-body);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
}

.lang-option:hover {
  background: rgba(110, 56, 255, 0.2);
  color: var(--text-pure-white);
}

.lang-option.active {
  background: rgba(110, 56, 255, 0.35);
  color: #fff;
  font-weight: 700;
}

/* Settings Navbar Button */
.btn-settings-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-pure-white);
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.btn-settings-toggle:hover {
  background: rgba(110, 56, 255, 0.25);
  border-color: rgba(110, 56, 255, 0.5);
  transform: rotate(30deg) scale(1.05);
}

/* ==========================================================================
   Settings Modal Dialog (Glassmorphism & Responsive)
   ========================================================================== */
.settings-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 18, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.settings-modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.settings-modal-card {
  background: rgba(15, 19, 41, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(110, 56, 255, 0.3);
  overflow: hidden;
  animation: modalSlideUp 0.3s var(--ease-spring);
}

@keyframes modalSlideUp {
  from { transform: translateY(30px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.settings-modal-header {
  padding: 22px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.settings-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.settings-modal-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.settings-modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-pure-white);
  line-height: 1.2;
}

.settings-modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.btn-close-modal {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-body);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-close-modal:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  transform: scale(1.05);
}

/* Category Tabs Nav */
.settings-tabs-nav {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  background: rgba(10, 13, 30, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.settings-tabs-nav::-webkit-scrollbar {
  display: none;
}

.settings-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.settings-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure-white);
}

.settings-tab-btn.active {
  background: rgba(110, 56, 255, 0.25);
  border-color: rgba(110, 56, 255, 0.5);
  color: var(--text-pure-white);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(110, 56, 255, 0.3);
}

/* Tab Panes */
.settings-tab-pane {
  display: none;
  padding: 22px 24px;
  overflow-y: auto;
  flex: 1;
}

.settings-tab-pane.active {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Setting Item Row */
.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.setting-item-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-item-toggle:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.setting-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.setting-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure-white);
  cursor: pointer;
}

.setting-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.setting-select {
  background: rgba(10, 14, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-pure-white);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  min-width: 170px;
  transition: all 0.2s ease;
}

.setting-select:hover, .setting-select:focus {
  border-color: var(--akkori-purple);
  box-shadow: 0 0 14px rgba(110, 56, 255, 0.35);
}

/* Custom Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.12);
  transition: .3s var(--ease-spring);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s var(--ease-spring);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

input:checked + .slider {
  background: linear-gradient(135deg, var(--akkori-deep-purple), var(--akkori-purple));
  border-color: var(--akkori-purple-light);
  box-shadow: 0 0 12px rgba(110, 56, 255, 0.5);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Filename Preview Box */
.filename-preview-box {
  background: rgba(10, 14, 32, 0.8);
  border: 1px dashed rgba(110, 56, 255, 0.4);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 6px;
}

.preview-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.preview-value {
  font-family: monospace;
  font-size: 0.92rem;
  color: #a78bfa;
  word-break: break-all;
}

/* Backup Actions Grid */
.backup-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-backup-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-pure-white);
  padding: 12px 18px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-backup-action:hover {
  background: rgba(110, 56, 255, 0.2);
  border-color: rgba(110, 56, 255, 0.4);
  transform: translateY(-1px);
}

.btn-backup-action.danger {
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.btn-backup-action.danger:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.6);
}

/* Modal Footer */
.settings-modal-footer {
  padding: 16px 24px;
  background: rgba(10, 13, 30, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.settings-save-indicator {
  font-size: 0.8rem;
  color: #86efac;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-modal-done {
  background: linear-gradient(135deg, var(--akkori-deep-purple), var(--akkori-purple));
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(110, 56, 255, 0.4);
}

.btn-modal-done:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(110, 56, 255, 0.6);
}

/* ==========================================================================
   Hero Section (Exact landingpagedesig.png layout)
   ========================================================================== */
.hero-section {
  padding: 40px 0 60px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 30px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: var(--text-pure-white);
  position: relative;
}

.akkori-name {
  color: var(--akkori-purple-light);
}

.akkori-gets-it {
  color: var(--text-pure-white);
}

.sparkle-droplet {
  position: absolute;
  color: var(--akkori-purple-light);
  font-size: 1.2rem;
  animation: sparkleTwinkle 2s infinite ease-in-out alternate;
}

.sparkle-droplet.d1 {
  top: 60px;
  right: 180px;
}

.sparkle-droplet.d2 {
  top: 85px;
  right: 140px;
  animation-delay: 1s;
}

@keyframes sparkleTwinkle {
  0% { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 8px var(--akkori-purple)); }
}

.hero-tagline {
  color: var(--text-body);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 520px;
}

/* Omnibox Capsule */
.omnibox-wrapper {
  position: relative;
  max-width: 600px;
}

.omnibox-capsule {
  display: flex;
  align-items: center;
  background: var(--bg-input-capsule);
  border-radius: 9999px;
  padding: 6px 8px 6px 18px;
  box-shadow: var(--shadow-omnibox);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.omnibox-capsule:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(110, 56, 255, 0.45);
}

.omnibox-link-icon {
  color: #64748b;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.omnibox-input-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 4px;
}

.omnibox-input-field::placeholder {
  color: #94a3b8;
}

.btn-paste-pill {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  cursor: pointer;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.btn-paste-pill:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.btn-download-action {
  background: linear-gradient(135deg, var(--akkori-deep-purple) 0%, var(--akkori-purple) 100%);
  border: none;
  color: var(--text-pure-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(110, 56, 255, 0.4);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}

.btn-download-action:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 22px rgba(110, 56, 255, 0.6);
}

.btn-download-action:active {
  transform: scale(0.98);
}

/* Social Platform Tiles Row */
.social-tiles-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-tile-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-spring), filter 0.25s ease;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

.social-tile-img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  transition: transform 0.25s var(--ease-spring);
}

.social-tile-btn:hover {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 10px 20px rgba(110, 56, 255, 0.4)) brightness(1.1);
}

.social-tile-btn:active {
  transform: translateY(0) scale(0.95);
}

/* ==========================================================================
   Hero Right: Animated Akkori Mascot Stage
   ========================================================================== */
.mascot-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-aura {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(110, 56, 255, 0.4) 0%, rgba(34, 211, 238, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: auraPulse 4s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.8; }
}

.akkori-character-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  animation: akkoriFloat 5s ease-in-out infinite alternate;
  transform-origin: center bottom;
  cursor: pointer;
}

.akkori-mascot-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s var(--ease-spring);
}

.akkori-character-wrapper:hover .akkori-mascot-image {
  transform: scale(1.04) rotate(-2deg);
}

@keyframes akkoriFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
  100% { transform: translateY(4px) rotate(-1deg); }
}

/* Cyber Visor Glow Overlay */
.visor-glow-overlay {
  position: absolute;
  top: 15%;
  right: 25%;
  width: 120px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: visorPulse 2.5s ease-in-out infinite alternate;
}

@keyframes visorPulse {
  0% { opacity: 0.3; transform: scale(0.9); }
  100% { opacity: 0.8; transform: scale(1.2); }
}

/* Interactive Floating Speech Bubble */
.akkori-speech-bubble {
  position: absolute;
  top: 10px;
  left: -20px;
  background: rgba(14, 18, 36, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--akkori-purple);
  border-radius: 20px 20px 4px 20px;
  padding: 10px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(110, 56, 255, 0.3);
  z-index: 10;
  animation: bubbleFloat 4s ease-in-out infinite alternate;
}

@keyframes bubbleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.speech-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-pure-white);
}

/* ==========================================================================
   Live Inspector & Assistant Section
   ========================================================================== */
.inspector-card {
  max-width: 1000px;
  margin: 20px auto 40px;
  padding: 0 24px;
  display: none;
  animation: slideUpFade 0.4s var(--ease-spring) forwards;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.akkori-status-bar {
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.akkori-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(110, 56, 255, 0.2);
  border: 1px solid var(--akkori-purple);
  padding: 4px;
  object-fit: contain;
}

.status-text-group h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.status-text-group p {
  font-size: 0.9rem;
  color: var(--text-body);
}

.inspector-content-box {
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.media-preview-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.media-thumb-container {
  width: 240px;
  height: 135px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.media-duration-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.media-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(110, 56, 255, 0.18);
  border: 1px solid rgba(110, 56, 255, 0.4);
  color: var(--akkori-purple-light);
  padding: 4px 10px;
  border-radius: 9999px;
  width: fit-content;
}

.media-title-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-pure-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-author-text {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* Tabs */
.format-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 14px;
}

.fmt-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.fmt-tab.active {
  background: rgba(110, 56, 255, 0.18);
  color: var(--akkori-purple-light);
  box-shadow: 0 0 15px rgba(110, 56, 255, 0.2);
}

/* Format Grid */
.format-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.format-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}

.format-option-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.format-option-card.selected {
  background: rgba(110, 56, 255, 0.25);
  border-color: var(--akkori-purple);
  box-shadow: 0 0 18px rgba(110, 56, 255, 0.35);
}

.opt-quality {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.opt-meta {
  font-size: 0.8rem;
  color: var(--text-body);
}

/* Trim Card */
.trim-tool-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 16px 20px;
}

.trim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.trim-indicator {
  color: var(--akkori-purple-light);
  font-size: 0.82rem;
}

.trim-controls {
  display: flex;
  gap: 20px;
}

.trim-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.trim-num-input {
  background: rgba(10, 14, 28, 0.9);
  border: 1px solid var(--border-glass);
  color: var(--text-pure-white);
  padding: 6px 12px;
  border-radius: 8px;
  width: 90px;
  text-align: center;
  font-weight: 600;
}

.download-footer {
  display: flex;
  justify-content: flex-end;
}

.btn-confirm-download {
  width: 100%;
  background: linear-gradient(135deg, var(--akkori-deep-purple) 0%, var(--akkori-purple) 100%);
  border: none;
  color: var(--text-pure-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(110, 56, 255, 0.45);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}

.btn-confirm-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(110, 56, 255, 0.65);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section, .faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.gradient-brand {
  background: linear-gradient(135deg, var(--text-pure-white) 0%, var(--akkori-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

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

.feature-card {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 56, 255, 0.4);
}

.feature-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(110, 56, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-head {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(110, 56, 255, 0.4);
}

.faq-question {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.app-footer {
  margin-top: auto;
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

/* Footer Legal & Privacy Hub */
.footer-legal-hub {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.footer-legal-btn:hover {
  color: var(--text-pure-white);
  background: rgba(255, 255, 255, 0.05);
}

.privacy-geo-badge {
  background: rgba(110, 56, 255, 0.25);
  border: 1px solid rgba(110, 56, 255, 0.5);
  color: #c4b5fd;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.legal-sep {
  color: var(--border-glass);
  font-size: 0.8rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Privacy Modal Specifics */
.privacy-modal-card {
  max-width: 640px;
}

.privacy-modal-icon-bubble {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(110, 56, 255, 0.25);
  border: 1px solid rgba(110, 56, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.privacy-legal-card {
  background: rgba(10, 14, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.legal-paragraph {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

.legal-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.legal-bullet-list li strong {
  color: var(--text-pure-white);
}

.legal-bullet-list code {
  background: rgba(110, 56, 255, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: #a78bfa;
}

/* Toast */
.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.toast-msg {
  background: rgba(14, 18, 36, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 14px 20px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideToast 0.3s var(--ease-spring) forwards;
}

@keyframes slideToast {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast-msg.error { border-color: rgba(239, 68, 68, 0.6); color: #fca5a5; }
.toast-msg.success { border-color: rgba(34, 197, 94, 0.6); color: #86efac; }

/* Discrete Cookie & Zero-Tracking Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 580px;
  background: rgba(14, 18, 38, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(110, 56, 255, 0.4);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(110, 56, 255, 0.25);
  z-index: 1500;
  animation: cookieSlideUp 0.35s var(--ease-spring) forwards;
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-icon-wrapper {
  font-size: 1.6rem;
  line-height: 1;
}

.cookie-text-box {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-headline {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.cookie-desc {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.35;
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-cookie-learn {
  background: transparent;
  border: none;
  color: #a78bfa;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie-learn:hover {
  color: #fff;
  background: rgba(110, 56, 255, 0.2);
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--akkori-deep-purple), var(--akkori-purple));
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(110, 56, 255, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(110, 56, 255, 0.5);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-section {
    padding: 20px 0 40px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    padding: 0 16px;
  }

  /* 1. Mascot goes to the TOP on mobile */
  .hero-right {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .hero-left {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* 2. Smaller, proportional mascot */
  .mascot-stage {
    width: 100%;
    max-width: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .akkori-character-wrapper {
    max-width: 165px;
    margin: 0 auto;
  }

  .mascot-aura {
    width: 200px;
    height: 200px;
    filter: blur(35px);
  }

  .visor-glow-overlay {
    width: 45px;
    height: 22px;
    filter: blur(6px);
  }

  .akkori-speech-bubble {
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 14px;
    padding: 6px 14px;
    white-space: nowrap;
    max-width: 92vw;
    font-size: 0.78rem;
    animation: bubbleFloatMobile 3.5s ease-in-out infinite alternate;
  }

  @keyframes bubbleFloatMobile {
    0% { transform: translate(-50%, 0); }
    100% { transform: translate(-50%, -6px); }
  }

  /* 3. Centralized Headline and Tagline */
  .hero-headline {
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: -0.6px;
    text-align: center;
  }

  .hero-tagline {
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 330px;
    text-align: center;
  }

  /* 4. Omnibox capsule */
  .omnibox-wrapper {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .omnibox-capsule {
    padding: 5px 6px 5px 12px;
  }

  .omnibox-input-field {
    font-size: 0.92rem;
    min-width: 0;
  }

  .btn-paste-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
    margin-right: 4px;
  }

  .btn-download-action {
    padding: 10px 18px;
    font-size: 0.9rem;
    gap: 6px;
  }

  /* 5. Centralized Social Row - ALL 9 icons visible in a single row without overflowing */
  .social-tiles-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    flex-wrap: nowrap;
  }

  .social-tile-btn {
    flex: 0 0 auto;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
  }

  .social-tile-img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .media-preview-row {
    flex-direction: column;
  }

  .media-thumb-container {
    width: 100%;
    height: 200px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-headline {
    font-size: 1.95rem;
  }

  .akkori-character-wrapper {
    max-width: 145px;
  }

  .social-tiles-row {
    gap: 4px;
  }

  .social-tile-img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .btn-download-action {
    padding: 10px 14px;
  }
}

/* ==========================================================================
   ⚡ Akkori Fix (Lossless Media Repair & Remux Hub)
   ========================================================================== */
.nav-highlight-pill {
  background: rgba(110, 56, 255, 0.2);
  border: 1px solid rgba(110, 56, 255, 0.4);
  color: var(--akkori-purple-light) !important;
  border-radius: 9999px;
  padding: 6px 14px !important;
  font-weight: 700 !important;
  transition: all 0.2s ease;
}

.nav-highlight-pill:hover {
  background: rgba(110, 56, 255, 0.35);
  box-shadow: 0 0 16px rgba(110, 56, 255, 0.4);
  transform: translateY(-1px);
}

.akkori-fix-section {
  padding: 40px 0 60px;
  scroll-margin-top: 80px;
}

.fix-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.fix-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fix-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #67e8f9;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 9999px;
}

.fix-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-pure-white);
  line-height: 1.2;
}

.fix-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 680px;
  line-height: 1.6;
}

/* Dropzone Card */
.fix-dropzone-card {
  background: rgba(16, 20, 48, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 2px dashed rgba(110, 56, 255, 0.45);
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(110, 56, 255, 0.15);
  cursor: pointer;
  position: relative;
  transition: all 0.3s var(--ease-spring);
  text-align: center;
}

.fix-dropzone-card:hover, .fix-dropzone-card.drag-over {
  border-color: var(--akkori-purple-light);
  background: rgba(22, 28, 64, 0.85);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(110, 56, 255, 0.35);
  transform: translateY(-2px);
}

.fix-file-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.dropzone-icon-glow {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 56, 255, 0.3) 0%, rgba(34, 211, 238, 0.1) 70%);
  border: 1px solid rgba(110, 56, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  box-shadow: 0 0 25px rgba(110, 56, 255, 0.3);
  animation: pulseDropzone 3s infinite ease-in-out alternate;
}

@keyframes pulseDropzone {
  0% { transform: scale(0.96); box-shadow: 0 0 15px rgba(110, 56, 255, 0.2); }
  100% { transform: scale(1.04); box-shadow: 0 0 35px rgba(110, 56, 255, 0.5); }
}

.dropzone-text-head {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.dropzone-text-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* File Selected State */
.fix-file-selected-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 10;
  cursor: default;
}

.file-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(10, 13, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 20px;
  text-align: left;
}

.file-icon-badge {
  font-size: 1.8rem;
  background: rgba(110, 56, 255, 0.2);
  border: 1px solid rgba(110, 56, 255, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.file-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.file-name-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size-text {
  font-size: 0.82rem;
  color: #94a3b8;
}

.btn-clear-fix {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-clear-fix:hover {
  background: rgba(239, 68, 68, 0.3);
  transform: scale(1.08);
}

/* Fix Modes Grid */
.fix-modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fix-mode-card {
  background: rgba(10, 14, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
}

.fix-mode-card input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--akkori-purple-light);
  cursor: pointer;
}

.fix-mode-card:hover {
  background: rgba(110, 56, 255, 0.1);
  border-color: rgba(110, 56, 255, 0.3);
}

.fix-mode-card.active {
  background: rgba(110, 56, 255, 0.22);
  border-color: var(--akkori-purple);
  box-shadow: 0 0 18px rgba(110, 56, 255, 0.3);
}

.mode-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mode-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.mode-desc {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.4;
}

/* Fix Action Footer */
.fix-action-footer {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-run-fix {
  background: linear-gradient(135deg, var(--akkori-deep-purple) 0%, var(--akkori-purple) 100%);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(110, 56, 255, 0.5);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}

.btn-run-fix:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(110, 56, 255, 0.7);
}

.btn-run-fix:active {
  transform: scale(0.98);
}

.btn-run-fix:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .fix-modes-grid {
    grid-template-columns: 1fr;
  }
  .fix-title {
    font-size: 1.8rem;
  }
  .fix-dropzone-card {
    padding: 30px 18px;
  }
}

