/* ==========================================================================
   Movie Quiz Landing Page Styles
   Theme: Dark Cinematic (Matching the Mobile App Aesthetic)
   ========================================================================== */

:root {
  --bg-dark: #090d16;
  --bg-primary: #0d131f;
  --bg-secondary: #131b2c;
  --bg-card: rgba(21, 30, 48, 0.72);
  --bg-card-hover: rgba(28, 39, 62, 0.9);
  --bg-card-solid: #162033;
  --border-card: rgba(56, 75, 110, 0.45);
  --border-glow: rgba(229, 184, 76, 0.4);

  --accent-gold: #e5b84c;
  --accent-gold-light: #fbe08e;
  --accent-gold-dark: #b8860b;
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --accent-green: #22c55e;
  --accent-red: #ef4444;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-serif: 'Cinzel', 'Playfair Display', 'Georgia', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px -5px rgba(229, 184, 76, 0.25);
  --shadow-blue-glow: 0 0 30px -5px rgba(37, 99, 235, 0.35);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

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

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

.ambient-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(229, 184, 76, 0.08) 40%, transparent 70%);
  filter: blur(80px);
}

.ambient-glow::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 184, 76, 0.07) 0%, transparent 70%);
  filter: blur(90px);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.25;
}

.gold-text {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(13, 19, 31, 0.85);
  border-bottom: 1px solid var(--border-card);
  transition: background 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo svg, .brand-logo img {
  width: 40px;
  height: 40px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

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

.nav-link:hover {
  color: var(--accent-gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

/* Hero Section */
.hero-section {
  padding: clamp(40px, 8vw, 90px) 0 clamp(40px, 6vw, 70px);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(229, 184, 76, 0.12);
  border: 1px solid rgba(229, 184, 76, 0.35);
  border-radius: 999px;
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  width: 100%;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-sans);
  transition: all 0.25s ease;
  min-width: 210px;
}

.btn-google-play {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.btn-google-play:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.btn-app-store-disabled {
  background: rgba(18, 25, 41, 0.65);
  color: var(--text-secondary);
  border: 1px dashed rgba(148, 163, 184, 0.3);
  cursor: default;
  position: relative;
}

.store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.btn-google-play .store-text-small {
  color: #cbd5e1;
}

.store-text-main {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.store-badge-soon {
  display: inline-block;
  font-size: 0.68rem;
  background: rgba(229, 184, 76, 0.2);
  color: var(--accent-gold);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 2px;
}

/* Quick Metrics */
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Phone Mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 310px;
  aspect-ratio: 459 / 1024;
  border-radius: 42px;
  background: #000000;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85),
              0 0 45px -10px rgba(37, 99, 235, 0.4),
              0 0 0 2px #28364f,
              0 0 0 6px #131b2c;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-mockup:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.9),
              0 0 55px -10px rgba(229, 184, 76, 0.35),
              0 0 0 2px var(--accent-gold),
              0 0 0 6px #131b2c;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #232d3f;
  border-radius: 3px;
  z-index: 10;
}

.phone-camera {
  position: absolute;
  top: 15px;
  left: calc(50% - 60px);
  width: 10px;
  height: 10px;
  background: #111827;
  border: 2px solid #1f2937;
  border-radius: 50%;
  z-index: 10;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  user-select: none;
}

/* Interactive Demo Quiz Section */
.demo-section {
  padding: clamp(50px, 8vw, 100px) 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 26, 43, 0.6) 50%, transparent 100%);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 6vw, 60px);
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Quiz Interactive Card Container */
.interactive-quiz-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 32px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.quiz-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.quiz-score-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--accent-gold);
  font-weight: 600;
}

.quiz-lives {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f87171;
  font-weight: 600;
}

/* 4 Actors Grid */
.actors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

@media (min-width: 540px) {
  .actors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.actor-card {
  background: #111827;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.actor-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
}

.actor-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  background: #1a2336;
}

.actor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.actor-name {
  padding: 8px 6px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.2;
}

/* Quiz Meta Bar */
.quiz-meta-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--accent-gold-light);
  font-weight: 600;
}

.meta-divider {
  opacity: 0.4;
}

/* Quiz Option Buttons */
.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 500px) {
  .quiz-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn-option {
  background: rgba(22, 32, 51, 0.9);
  color: var(--text-primary);
  border: 1px solid rgba(62, 85, 126, 0.6);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.btn-option:hover:not(:disabled) {
  background: rgba(36, 52, 82, 0.95);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

.btn-option:active:not(:disabled) {
  transform: scale(0.98);
}

/* Correct & Wrong Answer Highlights */
.btn-option.correct {
  background: rgba(34, 197, 94, 0.25) !important;
  border-color: var(--accent-green) !important;
  color: #86efac !important;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.4);
}

.btn-option.wrong {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: var(--accent-red) !important;
  color: #fca5a5 !important;
  animation: shake 0.45s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Quiz Feedback Box */
.quiz-feedback {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

.quiz-feedback.show {
  display: block;
}

.quiz-feedback.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--accent-green);
  color: #dcfce7;
}

.quiz-feedback.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--accent-red);
  color: #fee2e2;
}

.feedback-title {
  font-weight: 700;
  margin-bottom: 4px;
}

/* Quiz Actions */
.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.btn-next-question {
  background: var(--accent-blue);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-next-question:hover {
  background: var(--accent-blue-hover);
}

.quiz-cta-hint {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.quiz-cta-hint a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
}

/* Quiz Game Over & Limit Reached Card */
.quiz-gameover-card {
  text-align: center;
  padding: 24px 12px;
  animation: fadeIn 0.4s ease;
}

.quiz-gameover-icon {
  font-size: 3.2rem;
  margin-bottom: 14px;
}

.quiz-gameover-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.quiz-gameover-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 24px;
}

.quiz-gameover-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 480px) {
  .quiz-gameover-buttons {
    flex-direction: row;
  }
}

.btn-restart-demo {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-restart-demo:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* App Showcase / Screenshots Section */
.showcase-section {
  padding: clamp(50px, 8vw, 100px) 0;
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 840px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.showcase-phone-wrap {
  width: 100%;
  max-width: 250px;
  margin-bottom: 28px;
}

.showcase-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--accent-gold-light);
}

.showcase-card-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.showcase-features-list {
  list-style: none;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.showcase-features-list li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 700;
}

/* Features Grid Section */
.features-section {
  padding: clamp(50px, 8vw, 90px) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.feature-box:hover {
  border-color: var(--accent-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(229, 184, 76, 0.12);
  border: 1px solid rgba(229, 184, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

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

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Final CTA Section */
.cta-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.cta-banner {
  background: linear-gradient(135deg, #131b2e 0%, #1e2a47 50%, #16223b 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 48px);
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-blue-glow);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 184, 76, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-buttons-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Site Footer */
.site-footer {
  border-top: 1px solid var(--border-card);
  background: #080c14;
  padding: 40px 0 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  justify-content: center;
}

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

.footer-link:hover {
  color: var(--accent-gold);
}

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

/* Privacy Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-backdrop.open {
  display: flex;
}

.modal-window {
  background: #111827;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-card);
  background: #151e30;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.btn-close-modal {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}

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

.modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal-body h4 {
  color: var(--text-primary);
  margin: 18px 0 8px;
}

.modal-body p {
  margin-bottom: 14px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Accessibility / Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
