/* ==========================================================================
   FrostByte Landing Page Stylesheet - Premium Dark/Black Aesthetic
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
  --brand-blue: #2B62A2;
  --brand-blue-light: #5B8FCB;
  --brand-blue-dark: #1C457D;
  --brand-cyan: #00f2fe;
  --brand-cyan-glow: rgba(0, 242, 254, 0.2);
  
  /* Backgrounds (Sleek Pure Black Theme) */
  --bg-dark: #000000;
  --bg-dark-card: #0d0d12;
  --bg-dark-card-hover: #14141c;
  --bg-dark-overlay: rgba(13, 13, 18, 0.8);
  
  /* Contrasting Accent for Google Play CTA (Sleek and vibrant) */
  --accent-orange: #FF9F1C;
  --accent-orange-hover: #FFAE43;
  --accent-yellow: #FFD166;
  
  /* Neutrals */
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #000000;
  --border-color: rgba(255, 255, 255, 0.06);
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-retro: 'Press Start 2P', monospace;
  --font-retro-narrow: 'VT323', monospace;

  /* Layout and Shapes */
  --container-max-width: 1200px;
  --header-height: 80px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.25;
}

.hero-headline {
  font-family: var(--font-retro);
  font-size: clamp(1.1rem, 3.8vw, 2.1rem);
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.section-headline {
  font-family: var(--font-retro);
  font-size: clamp(1rem, 3.2vw, 1.7rem);
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.body-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 16px;
  opacity: 0.95;
}

.body-standard {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Buttons (Modern Sleek Rounded Elements) */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 800;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
}

.btn:active {
  transform: translateY(1px);
}

.btn-google-play {
  background-color: var(--accent-orange);
  color: var(--text-dark);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(255, 159, 28, 0.25);
}

.btn-google-play:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 159, 28, 0.45);
}

.btn-subtext {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 1px;
}

.btn-maintext {
  font-size: 1.35rem;
  letter-spacing: 0.25px;
}

.massive-btn {
  padding: 20px 52px;
  border-radius: var(--radius-lg);
}

.massive-btn .btn-maintext {
  font-size: 1.55rem;
}

/* Header & Navigation */
.app-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.logo-text {
  font-family: var(--font-retro);
  font-size: 1.05rem;
  color: var(--text-light);
  letter-spacing: -1px;
}

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

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-item:hover {
  color: var(--brand-cyan);
}

.nav-button {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-yellow);
  text-decoration: none;
  padding: 8px 18px;
  border: 1.5px solid var(--accent-yellow);
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

.nav-button:hover {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(255, 209, 102, 0.3);
}

/* Hero Section (Black with Sleek Brand Backlighting) */
.hero-section {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 100px;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(43, 98, 162, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 85% 70%, rgba(0, 242, 254, 0.12) 0%, transparent 55%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ice-cube-glow-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.glowing-ice-cube {
  filter: drop-shadow(0 0 35px var(--brand-cyan));
  z-index: 2;
}

.glow-underlay {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--brand-cyan-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Animations for Sparkles in SVG */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.sparkle {
  animation: pulse-sparkle 2s infinite ease-in-out;
  transform-origin: center;
}

.s1 { animation-delay: 0.2s; }
.s2 { animation-delay: 0.8s; }
.s3 { animation-delay: 1.4s; }
.s4 { animation-delay: 0.5s; }

@keyframes pulse-sparkle {
  0%, 100% { opacity: 0.1; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Section 1: The Hook */
.hook-section {
  padding: 120px 0;
  position: relative;
  background-color: var(--bg-dark);
}

.hook-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.hook-content {
  max-width: 820px;
  margin-bottom: 48px;
}

.hook-content p {
  margin-bottom: 20px;
}

.hook-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 48px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-retro-narrow);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--brand-cyan);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Section 2: Core Features */
.features-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-image: radial-gradient(circle at 50% 50%, rgba(43, 98, 162, 0.06) 0%, transparent 60%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 143, 203, 0.3);
  background-color: var(--bg-dark-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(43, 98, 162, 0.08);
}

.feature-icon-wrapper {
  margin-bottom: 28px;
  background-color: rgba(43, 98, 162, 0.12);
  padding: 14px;
  border-radius: var(--radius-md);
  border: none;
}

.bg-match {
  fill: #0d0d12; /* Matches the new var(--bg-dark-card) for clean mask */
  transition: var(--transition-smooth);
}
.feature-card:hover .bg-match {
  fill: #14141c; /* Matches var(--bg-dark-card-hover) */
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Section 3: The AI Recipe Spotlight */
.spotlight-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
}

.spotlight-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-info h2 {
  margin-bottom: 24px;
}

.spotlight-info p {
  margin-bottom: 20px;
}

/* Interactive AI Recipe Simulator Widget (Sleek Curved Panel) */
.spotlight-widget {
  width: 100%;
}

.simulator-window {
  background-color: #050508;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(43, 98, 162, 0.06);
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.simulator-header {
  background-color: #0d0d12;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #eab308; }
.dot.green { background-color: #22c55e; }

.window-title {
  font-family: var(--font-retro-narrow);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.simulator-body {
  padding: 28px;
  min-height: 400px;
  position: relative;
}

/* Subtle modern scanlines */
.simulator-body::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.12) 50%);
  z-index: 10;
  background-size: 100% 4px;
  pointer-events: none;
}

.step-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

.step-instruction {
  font-family: var(--font-retro-narrow);
  font-size: 1.25rem;
  color: var(--brand-cyan);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.ingredient-btn {
  background-color: #0d0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--text-light);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.ingredient-btn:hover {
  background-color: #14141c;
  border-color: rgba(255, 255, 255, 0.15);
}

.ingredient-btn.active {
  border-color: var(--brand-cyan);
  background-color: rgba(0, 242, 254, 0.06);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.ing-icon {
  font-size: 1.15rem;
}

.preferences-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.pref-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.pref-label input[type="checkbox"] {
  accent-color: var(--brand-cyan);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-generate-recipe {
  background-color: transparent;
  border: 1.5px solid var(--accent-yellow);
  color: var(--accent-yellow);
  font-family: var(--font-retro);
  font-size: 0.75rem;
  padding: 16px;
  border-radius: var(--radius-md);
  width: 100%;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-shadow: 0 0 4px rgba(255, 209, 102, 0.2);
}

.btn-generate-recipe:hover {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.3);
  text-shadow: none;
}

/* Loading Engine screen */
.loader-terminal {
  font-family: var(--font-retro-narrow);
  font-size: 1.3rem;
  color: var(--brand-cyan);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  gap: 16px;
}

.loading-line {
  opacity: 0;
  animation: typing 0.5s steps(30, end) forwards;
}

.loading-line:nth-child(1) { animation-delay: 0.2s; }
.loading-line:nth-child(2) { animation-delay: 0.8s; }
.loading-line:nth-child(3) { animation-delay: 1.4s; }
.loading-line:nth-child(4) { animation-delay: 2s; }

.pixel-progress-bar {
  width: 100%;
  height: 12px;
  border: 1px solid var(--brand-cyan);
  border-radius: var(--radius-pill);
  padding: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background-color: var(--brand-cyan);
  width: 0%;
  border-radius: var(--radius-pill);
  transition: width 2s linear;
}

@keyframes typing {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Result Receipt Card */
.recipe-output {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recipe-card-header {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.recipe-title-display {
  font-family: var(--font-retro);
  font-size: 0.9rem;
  color: var(--accent-yellow);
  margin-bottom: 6px;
}

.recipe-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.recipe-content-scroll {
  flex-grow: 1;
  overflow-y: auto;
  max-height: 240px;
  padding-right: 8px;
  margin-bottom: 20px;
}

/* Custom scrollbar for recipe widget */
.recipe-content-scroll::-webkit-scrollbar {
  width: 6px;
}
.recipe-content-scroll::-webkit-scrollbar-track {
  background: #0d0d12;
}
.recipe-content-scroll::-webkit-scrollbar-thumb {
  background: var(--brand-blue-dark);
  border-radius: var(--radius-pill);
}

.recipe-heading {
  font-family: var(--font-retro-narrow);
  font-size: 1.2rem;
  color: var(--brand-cyan);
  margin-top: 12px;
  margin-bottom: 6px;
}

.recipe-ingredients-list {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.recipe-steps-list {
  list-style-type: decimal;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.recipe-steps-list li {
  margin-bottom: 8px;
}

.btn-reset-widget {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font-retro-narrow);
  font-size: 1.1rem;
  padding: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-reset-widget:hover {
  border-color: var(--text-light);
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.03);
}

/* Footer Section */
.app-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 120px 0 40px 0;
  position: relative;
}

.footer-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px auto;
}

.footer-headline {
  font-family: var(--font-retro);
  font-size: clamp(1.1rem, 3.8vw, 2.1rem);
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 24px;
}

.footer-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-svg {
  filter: drop-shadow(0 0 6px var(--brand-cyan));
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Scroll-Driven Animations & Performance
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-card {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
      }
    }
    
    .animate-scroll {
      animation: reveal-card auto linear backwards;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }
  }
}

/* IntersectionObserver Fallback opacity states */
.io-animate {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.io-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet Layout (under 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-action {
    display: flex;
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .spotlight-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Small Tablet / Large Mobile Layout (under 768px) */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .hook-stats {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .hook-card {
    padding: 44px 28px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* Mobile Screen Layout (under 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .btn-google-play {
    width: 100%;
  }
  
  .massive-btn .btn-maintext {
    font-size: 1.3rem;
  }
  
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  
  .preferences-grid {
    flex-direction: column;
    gap: 12px;
  }
  
  .ice-cube-glow-wrapper svg {
    width: 190px;
    height: 190px;
  }
}

/* ==========================================================================
   Policies & Support Layout
   ========================================================================== */

/* Footer Links list */
.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--brand-cyan);
}

/* Support Page Layout */
.support-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 120px;
  min-height: 85vh;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at 50% 10%, rgba(43, 98, 162, 0.15) 0%, transparent 60%);
}

.support-container {
  max-width: 800px;
  margin: 0 auto;
}

.support-headline {
  margin-bottom: 12px;
}

.support-subtitle {
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* Expandable Accordion Component */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: rgba(91, 143, 203, 0.2);
}

.accordion-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.accordion-title-icon {
  font-family: var(--font-retro-narrow);
  color: var(--brand-cyan);
  margin-right: 12px;
  font-size: 1.3rem;
}

.accordion-arrow {
  font-size: 1.2rem;
  color: var(--brand-cyan);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 32px;
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-content {
  max-height: 600px; /* accommodates deletion form */
  padding: 24px 32px 32px 32px;
  border-top: 1px solid var(--border-color);
}

/* Deletion Form & Fields */
.support-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-input {
  background-color: #050508;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-light);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
  margin-top: 6px;
}

.form-checkbox-label input[type="checkbox"] {
  accent-color: var(--brand-cyan);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.btn-submit-support {
  background-color: var(--accent-orange);
  color: var(--text-dark);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  align-self: flex-start;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 159, 28, 0.2);
}

.btn-submit-support:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 159, 28, 0.35);
}

.btn-submit-support:active {
  transform: translateY(1px);
}

/* Success Confirmation Screen */
.support-success-message {
  text-align: center;
  padding: 30px 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.success-title {
  font-family: var(--font-retro);
  font-size: 0.85rem;
  color: var(--accent-yellow);
  margin-bottom: 12px;
}

.success-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.btn-policy-link {
  display: inline-block;
  background-color: transparent;
  border: 1.5px solid var(--brand-cyan);
  color: var(--brand-cyan);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  margin-top: 12px;
}

.btn-policy-link:hover {
  background-color: rgba(0, 242, 254, 0.05);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

/* Privacy Policy Detail Page */
.policy-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 120px;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at 10% 20%, rgba(43, 98, 162, 0.1) 0%, transparent 60%);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.policy-back-link:hover {
  color: var(--brand-cyan);
}

.policy-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.policy-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.policy-content h3 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-top: 36px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  border-left: 3px solid var(--brand-cyan);
  padding-left: 12px;
}

.policy-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
}

.policy-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-muted);
}

.policy-content li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

