/* ============================================================
   7-ELEVEN THAILAND FAN SITE — style.cs
   Dark theme, neon accents, glassmorphism, smooth animations
   ============================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #d92b2b;
  --orange: #f4a324;
  --green: #2a9d47;
  --dark: #0a0c0f;
  --dark2: #111418;
  --dark3: #181c22;
  --surface: #1e2430;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.10);
  --text: #f0f2f5;
  --text-muted: #8b92a0;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark2);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244, 163, 36, 0.12);
  border: 1px solid rgba(244, 163, 36, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text) 0%, rgba(240, 242, 245, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.0);
  transition: var(--transition);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #1a7032 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(42, 157, 71, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 157, 71, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.logo-seven {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--red);
}

.logo-eleven {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--green);
}

.nav-fan-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(244, 163, 36, 0.15);
  border: 1px solid rgba(244, 163, 36, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 4px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('hero.png') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}

.hero:hover .hero-bg-img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 12, 15, 0.55) 0%,
      rgba(10, 12, 15, 0.72) 50%,
      rgba(10, 12, 15, 0.98) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244, 163, 36, 0.12);
  border: 1px solid rgba(244, 163, 36, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-seven {
  color: var(--red);
  text-shadow: 0 0 60px rgba(217, 43, 43, 0.6), 0 0 120px rgba(217, 43, 43, 0.3);
}

.hero-eleven {
  color: var(--green);
  text-shadow: 0 0 60px rgba(42, 157, 71, 0.6), 0 0 120px rgba(42, 157, 71, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.25s both;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.55s both;
}

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

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 1.5s ease infinite;
}

/* ── TICKER ── */
.ticker-wrap {
  background: linear-gradient(90deg, var(--red) 0%, #c0392b 50%, var(--red) 100%);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

.ticker span {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* ── PRODUCTS SECTION ── */
.products-section {
  background: var(--dark2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 163, 36, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(244, 163, 36, 0.15);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(42, 157, 71, 0.12);
  border: 1px solid rgba(42, 157, 71, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── SPOTLIGHT (Thai Tea) SECTION ── */
.slurpee-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.slurpee-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 163, 36, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.slurpee-text strong {
  color: var(--orange);
}

.slurpee-flavors h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  margin-top: 32px;
}

.flavor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.flavor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.flavor-item:hover {
  border-color: var(--color);
}

.flavor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color);
  box-shadow: 0 0 10px var(--color);
  flex-shrink: 0;
}

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

.slurpee-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 163, 36, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease infinite;
}

.slurpee-hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.slurpee-hero-img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* ── HISTORY / TIMELINE ── */
.history-section {
  background: var(--dark2);
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--orange), var(--red));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  padding-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
  transform: translateX(30px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border: 3px solid var(--dark2);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 16px rgba(244, 163, 36, 0.6);
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 360px;
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: rgba(244, 163, 36, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244, 163, 36, 0.12);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.timeline-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── QUIZ SECTION ── */
.quiz-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  position: relative;
}

.quiz-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 157, 71, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.quiz-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.quiz-progress-bar {
  height: 4px;
  background: var(--glass);
  border-radius: 2px;
  margin-bottom: 40px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.quiz-question {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.quiz-step {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--glass);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
}

.quiz-option:hover {
  border-color: var(--orange);
  background: rgba(244, 163, 36, 0.08);
  transform: translateX(4px);
}

.quiz-option .opt-emoji {
  font-size: 1.4rem;
}

.quiz-result-inner {
  text-align: center;
  animation: fadeInUp 0.5s ease both;
}

.result-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
  animation: bounce-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.result-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}

.result-thai {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 600;
}

.result-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── FACTS SECTION ── */
.facts-section {
  background: var(--dark);
}

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

.fact-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fact-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(244, 163, 36, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.fact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 157, 71, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.fact-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.fact-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.fact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── FAN WALL ── */
.contact-section {
  background: var(--dark2);
}

.fan-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.fan-form-wrap {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
}

.fan-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group select option {
  background: var(--dark3);
}

.fan-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fan-post {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  animation: fadeInUp 0.4s ease both;
  transition: var(--transition);
}

.fan-post:hover {
  border-color: rgba(42, 157, 71, 0.3);
  transform: translateY(-3px);
}

.fan-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fan-avatar {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
}

.fan-post-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.fan-fav-tag {
  font-size: 0.75rem;
  color: var(--orange);
  background: rgba(244, 163, 36, 0.1);
  border: 1px solid rgba(244, 163, 36, 0.2);
  padding: 2px 10px;
  border-radius: 100px;
  margin-top: 3px;
  display: inline-block;
}

.fan-post p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark3);
  border-top: 1px solid var(--glass-border);
  padding: 72px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 0.78rem !important;
  opacity: 0.6;
}

.footer-links-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(8px);
  }
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .slurpee-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .slurpee-visual {
    order: -1;
  }

  .slurpee-hero-img {
    max-width: 320px;
  }

  .fan-wall {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item.right {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
    transform: translateX(0);
  }

  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 15, 0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.5rem;
  }

  .nav-burger {
    display: flex;
  }

  .hero-stats {
    gap: 28px;
  }

  .quiz-box {
    padding: 32px 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}