﻿/* ===== DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-orange: #f97316;
  --accent-orange-glow: rgba(249, 115, 22, 0.3);
  --accent-green: #22d3ee;
  --accent-green-glow: rgba(34, 211, 238, 0.2);
  --accent-gold: #fbbf24;
  --accent-rose: #fb7185;
  --accent-purple: #a78bfa;
  --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #1a1040 30%, #0f172a 60%, #0a1628 100%);
  --gradient-card: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(34, 211, 238, 0.05) 100%);
  --gradient-accent: linear-gradient(135deg, #f97316, #fbbf24);
  --border-glow: rgba(249, 115, 22, 0.2);
  --glass: rgba(255, 255, 255, 0.03);
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --section-padding: 120px 0;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 20px var(--accent-orange-glow);
}

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

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

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-stork {
  font-size: 72px;
  animation: flyIn 2s ease-in-out infinite;
}

@keyframes flyIn {

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

  25% {
    transform: translateY(-20px) rotate(-5deg);
  }

  75% {
    transform: translateY(10px) rotate(3deg);
  }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 28px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 8px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
}

.nav-logo span {
  font-size: 28px;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

.nav-logo:hover .nav-logo-img {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
  transform: scale(1.1);
}

/* Hero Logo */
.hero-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.1s both;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(249, 115, 22, 0.5);
  box-shadow:
    0 0 30px rgba(249, 115, 22, 0.3),
    0 0 60px rgba(249, 115, 22, 0.15),
    0 0 0 8px rgba(249, 115, 22, 0.08);
  animation: heroLogoFloat 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 40px rgba(249, 115, 22, 0.5),
    0 0 80px rgba(249, 115, 22, 0.25),
    0 0 0 12px rgba(249, 115, 22, 0.12);
}

@keyframes heroLogoFloat {

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

  50% {
    transform: translateY(-10px);
  }
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== HERO WITH BACKGROUND IMAGE ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 14, 26, 0.6) 0%,
      rgba(10, 14, 26, 0.3) 40%,
      rgba(10, 14, 26, 0.5) 70%,
      rgba(10, 14, 26, 0.95) 100%);
  z-index: 1;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-stars {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-orange);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
  backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease 0.4s both;
  letter-spacing: -2px;
  text-shadow: none;
  filter: drop-shadow(0 4px 30px rgba(249, 115, 22, 0.3));
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  animation: fadeInUp 1s ease 0.6s both;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.8s both;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 1s ease 1s both;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.4s both;
  z-index: 3;
}

.scroll-indicator span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    height: 40px;
  }

  50% {
    opacity: 0.3;
    height: 20px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gradient-accent);
  color: var(--bg-primary);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px var(--accent-orange-glow);
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(249, 115, 22, 0.5);
  color: var(--bg-primary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-family: var(--font-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: var(--accent-orange);
  transform: translateY(-3px);
  color: var(--text-primary);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-padding);
  position: relative;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-orange);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== YAREN TRACKER ===== */
.tracker-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d1225 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.tracker-dashboard {
  position: relative;
}

.tracker-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 24px;
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 50px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tracker-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.tracker-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.tracker-status-dot.live {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  }

  50% {
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.9), 0 0 48px rgba(34, 197, 94, 0.3);
  }
}

.tracker-cards {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.tracker-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.tracker-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

/* Arrival Card */
.arrival-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.arrival-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.3));
}

.arrival-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-orange);
  margin-bottom: 4px;
}

.arrival-date {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.arrival-zone {
  margin-bottom: 28px;
}

.zone-bar {
  position: relative;
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: visible;
}

.zone-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #fbbf24, #f97316);
  border-radius: 20px;
  transition: width 2s ease;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.zone-marker {
  position: absolute;
  top: 20px;
  font-size: 11px;
  color: var(--text-muted);
  transform: translateX(-50%);
  white-space: nowrap;
}

.zone-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-badge {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
}

.zone-badge.hot {
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent-orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
  animation: hotPulse 2s ease-in-out infinite;
}

@keyframes hotPulse {

  0%,
  100% {
    background: rgba(249, 115, 22, 0.15);
  }

  50% {
    background: rgba(249, 115, 22, 0.25);
  }
}

.zone-info {
  font-size: 12px;
  color: var(--text-muted);
}

.arrival-countdown {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 80px;
}

.countdown-value {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Stats Card */
.stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.tracker-stat {
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.tracker-stat:nth-child(1) {
  border-radius: 0;
  border-right: none;
  border-bottom: none;
}

.tracker-stat:nth-child(2) {
  border-bottom: none;
}

.tracker-stat:nth-child(3) {
  border-right: none;
}

.tracker-stat-value {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.tracker-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Map Container */
.tracker-map-container {
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  overflow: hidden;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 12px;
}

.map-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.legend-dot.completed {
  background: #22c55e;
}

.legend-dot.current {
  background: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange-glow);
}

.legend-dot.upcoming {
  background: var(--text-muted);
}

.map-widget {
  position: relative;
  padding: 20px;
  min-height: 350px;
}

.migration-map {
  width: 100%;
  height: auto;
}

.map-land {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.map-turkey {
  fill: rgba(249, 115, 22, 0.12);
  stroke: var(--accent-orange);
  stroke-width: 1.5;
}

.route-path {
  fill: none;
  stroke: url(#routeGrad);
  stroke: var(--accent-orange);
  stroke-width: 2.5;
  stroke-dasharray: 8 4;
  stroke-linecap: round;
  opacity: 0.7;
}

.route-path-glow {
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 6;
  stroke-linecap: round;
  opacity: 0.1;
  filter: blur(4px);
}

/* Waypoints */
.waypoint {
  cursor: pointer;
  transition: all 0.3s ease;
}

.waypoint.completed circle:first-child {
  fill: #22c55e;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.5));
}

.waypoint.current circle:first-child {
  fill: var(--accent-orange);
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.7));
}

.waypoint.upcoming circle:first-child {
  fill: var(--text-muted);
  opacity: 0.5;
}

.waypoint.destination circle:first-child {
  fill: var(--accent-gold);
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.7));
}

.waypoint-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.3;
}

.waypoint.completed .waypoint-ring {
  stroke: #22c55e;
}

.waypoint.current .waypoint-ring {
  stroke: var(--accent-orange);
}

.waypoint.upcoming .waypoint-ring {
  stroke: var(--text-muted);
  opacity: 0.2;
}

.waypoint.destination .waypoint-ring {
  stroke: var(--accent-gold);
}

.waypoint-pulse {
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 1;
  animation: waypointPulse 2s ease-in-out infinite;
}

.waypoint.destination .waypoint-pulse {
  stroke: var(--accent-gold);
}

@keyframes waypointPulse {
  0% {
    opacity: 0.6;
    r: 16;
  }

  100% {
    opacity: 0;
    r: 28;
  }
}

.waypoint-label {
  fill: var(--text-secondary);
  font-size: 11px;
  font-family: var(--font-primary);
  font-weight: 500;
}

.destination-label {
  fill: var(--accent-gold) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.yaren-icon {
  font-size: 22px;
  animation: yarenFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.5));
}

@keyframes yarenFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(3px, -5px);
  }
}

.waypoint:hover circle:first-child {
  filter: drop-shadow(0 0 16px rgba(249, 115, 22, 0.8)) brightness(1.3);
}

/* Map Info Popup */
.map-info-popup {
  display: none;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid var(--accent-orange);
  border-radius: 16px;
  padding: 18px 48px 18px 20px;
  max-width: 500px;
  width: 90%;
  backdrop-filter: blur(20px);
  z-index: 10;
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
  animation: popIn 0.3s ease;
}

.map-info-popup.active {
  display: block;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.map-info-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
}

.map-info-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.map-info-close:hover {
  color: var(--accent-orange);
}

.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

.quote-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  font-size: 80px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.quote-block cite {
  display: block;
  font-size: 16px;
  color: var(--accent-orange);
  font-style: normal;
  font-weight: 500;
}

/* ===== STORY CHAPTERS ===== */
.story {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.story-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}

.story-chapter:last-child {
  margin-bottom: 0;
}

.story-chapter.reverse {
  direction: rtl;
}

.story-chapter.reverse>* {
  direction: ltr;
}

.story-chapter-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.story-chapter-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-chapter-img:hover img {
  transform: scale(1.05);
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.story-chapter-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1.3;
}

.story-chapter-text h3 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-chapter-text p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-chapter-text p strong {
  color: var(--text-primary);
}

/* ===== PARALLAX BREAK ===== */
.parallax-break {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-img {
  position: absolute;
  inset: 0;
}

.parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.1);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.65);
  backdrop-filter: blur(2px);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 60px 24px;
}

.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  line-height: 1.3;
  color: white;
}

.parallax-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-orange);
  transform: scale(1.2);
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-align: center;
  max-width: 600px;
}

/* ===== ADEM QUOTES CAROUSEL ===== */
.adem-quotes-section {
  background: var(--bg-primary);
}

.quotes-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quotes-track {
  position: relative;
  min-height: 240px;
}

.quote-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  pointer-events: none;
  text-align: center;
  padding: 0 20px;
}

.quote-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-marks {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.8;
  color: var(--accent-orange);
  opacity: 0.3;
  margin-bottom: 8px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.quote-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.quote-dash {
  color: var(--accent-orange);
  font-weight: 700;
}

.quotes-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.quotes-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  background: var(--gradient-card);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quotes-btn:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.quotes-dots {
  display: flex;
  gap: 8px;
}

.quotes-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.quotes-dot.active {
  background: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange-glow);
  transform: scale(1.2);
}

/* ===== DOCUMENTARY ===== */
.documentary-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.documentary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.documentary-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.documentary-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.12);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.video-link {
  display: block;
  text-decoration: none;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.7);
}

.video-link:hover .video-placeholder img {
  transform: scale(1.05);
  filter: brightness(0.5);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(249, 115, 22, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  padding-left: 4px;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
}

.video-link:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 48px rgba(249, 115, 22, 0.6);
}

.video-watch-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-link:hover .video-watch-label {
  opacity: 1;
}

.documentary-info {
  padding: 24px;
}

.documentary-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.documentary-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.documentary-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRESS / NEWS ===== */
.press-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.press-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.press-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.press-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.15);
  color: var(--text-primary);
  text-shadow: none;
}

.press-card:hover::before {
  opacity: 1;
}

.press-card-highlight {
  border-color: rgba(251, 191, 36, 0.4);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.press-card-highlight::before {
  opacity: 1 !important;
  background: linear-gradient(135deg, #fbbf24, #f97316, #fbbf24);
}

.press-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.press-logo {
  font-size: 28px;
  flex-shrink: 0;
}

.press-source {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.press-type {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-orange);
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.press-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.press-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.press-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.press-lang {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.press-arrow {
  font-size: 18px;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
}

.press-card:hover .press-arrow {
  transform: translateX(4px);
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--bg-primary);
  padding: 120px 0;
}

.why-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 36px;
  line-height: 1.2;
}

.why-text {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

.why-text strong {
  color: var(--text-primary);
}

.highlight-text {
  font-size: 24px !important;
  color: var(--text-primary) !important;
  font-weight: 600;
  margin-top: 40px !important;
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 24px 32px;
  display: inline-block;
}

/* ===== TIMELINE ===== */
.timeline-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

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

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

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--accent-orange);
  border-radius: 50%;
  border: 3px solid var(--bg-secondary);
  z-index: 2;
  box-shadow: 0 0 20px var(--accent-orange-glow);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
}

.timeline-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.timeline-item:hover .timeline-card {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.1);
}

.timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-emoji {
  font-size: 28px;
  margin-bottom: 8px;
}

/* ===== FUN FACTS ===== */
.facts-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.fact-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.fact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-orange-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fact-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
}

.fact-card:hover::before {
  opacity: 1;
}

.fact-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.fact-value {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.fact-label {
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ===== TOKEN ===== */
.token-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.token-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
}

.token-hero {
  text-align: center;
  position: relative;
  z-index: 1;
}

.token-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: var(--gradient-card);
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 60px var(--accent-orange-glow);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 60px var(--accent-orange-glow), 0 0 120px rgba(249, 115, 22, 0.1);
  }

  50% {
    box-shadow: 0 0 80px rgba(249, 115, 22, 0.5), 0 0 160px rgba(249, 115, 22, 0.2);
  }
}

.token-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.token-ticker {
  font-size: 20px;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.token-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.token-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.token-feature {
  background: var(--glass);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.token-feature:hover {
  border-color: var(--accent-orange);
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-4px);
}

.token-feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.token-feature-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.token-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.token-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.token-contract {
  margin-top: 28px;
  padding: 14px 24px;
  background: var(--glass);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: monospace;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.token-contract:hover {
  border-color: var(--accent-orange);
  color: var(--text-primary);
}

/* ===== COMMUNITY ===== */
.community-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.community-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  display: block;
}

.community-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
  border-color: var(--accent-orange);
}

.community-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.community-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.community-handle {
  font-size: 14px;
  color: var(--accent-orange);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glow);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-logo span:first-child {
  font-size: 32px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .story-chapter,
  .story-chapter.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
    margin-bottom: 80px;
  }

  .story-chapter-img img {
    height: 260px;
  }

  .story-chapter-text h3 {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item-large {
    grid-column: span 2;
  }

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

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .parallax-break {
    min-height: 400px;
  }

  .tracker-cards {
    grid-template-columns: 1fr;
  }

  .tracker-status-bar {
    gap: 16px;
    padding: 12px 16px;
    border-radius: 16px;
    flex-direction: column;
  }

  .arrival-date {
    font-size: 22px;
  }

  .tracker-stat-value {
    font-size: 18px;
  }

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

  .parallax-content h2 {
    font-size: 28px;
  }

  .token-features {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== TABLET (max 768px) ===== */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .section-desc {
    font-size: 15px;
  }

  .section-label {
    font-size: 11px;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 20px;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .hero-subtitle {
    font-size: clamp(14px, 3vw, 20px);
  }

  .hero-desc {
    font-size: 14px;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  /* Tracker */
  .tracker-cards {
    grid-template-columns: 1fr;
  }

  .tracker-status-bar {
    gap: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    flex-direction: column;
    font-size: 11px;
  }

  .arrival-header {
    gap: 12px;
  }

  .arrival-icon {
    font-size: 36px;
  }

  .arrival-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .arrival-date {
    font-size: 20px;
  }

  .arrival-countdown {
    gap: 10px;
  }

  .countdown-item {
    padding: 10px 14px;
    min-width: 65px;
  }

  .countdown-value {
    font-size: 22px;
  }

  .countdown-label {
    font-size: 9px;
  }

  .tracker-card {
    padding: 24px 20px;
  }

  .tracker-stat {
    padding: 16px 12px;
  }

  .tracker-stat-value {
    font-size: 18px;
  }

  .tracker-stat-label {
    font-size: 10px;
  }

  .map-header {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .map-header h3 {
    font-size: 15px;
  }

  .map-widget {
    padding: 12px;
    min-height: 250px;
  }

  .map-footer {
    padding: 12px 16px;
    flex-direction: column;
    font-size: 11px;
  }

  .map-info-popup {
    padding: 14px 40px 14px 14px;
    max-width: 90%;
  }

  .map-info-text {
    font-size: 13px;
  }

  .waypoint-label {
    font-size: 9px;
  }

  .destination-label {
    font-size: 10px !important;
  }

  .zone-label {
    flex-direction: column;
    align-items: flex-start;
  }

  .zone-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  /* Quote */
  .quote-section {
    padding: 60px 0;
  }

  .quote-block blockquote {
    font-size: clamp(18px, 4vw, 28px);
  }

  .quote-block cite {
    font-size: 14px;
  }

  /* Quotes Carousel */
  .quotes-track {
    min-height: 280px;
  }

  .quote-text {
    font-size: clamp(16px, 4vw, 22px);
  }

  .quote-marks {
    font-size: 50px;
  }

  .quote-slide {
    padding: 0 8px;
  }

  /* Documentary */
  .documentary-grid {
    grid-template-columns: 1fr;
  }

  .documentary-info {
    padding: 18px;
  }

  .documentary-info h3 {
    font-size: 16px;
  }

  /* Story */
  .story-chapter,
  .story-chapter.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
    margin-bottom: 60px;
  }

  .story-chapter-img img {
    height: 240px;
  }

  .story-chapter-text h3 {
    font-size: 22px;
  }

  .story-chapter-text p {
    font-size: 15px;
  }

  .img-caption {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 52px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-year {
    font-size: 14px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-desc {
    font-size: 14px;
  }

  /* Parallax */
  .parallax-break {
    min-height: 350px;
  }

  .parallax-content {
    padding: 40px 16px;
  }

  .parallax-content h2 {
    font-size: 24px;
  }

  .parallax-content p {
    font-size: 15px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item-large {
    grid-column: span 2;
  }

  .gallery-caption {
    font-size: 12px;
  }

  /* Press */
  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card {
    padding: 20px;
  }

  .press-title {
    font-size: 15px;
  }

  .press-excerpt {
    font-size: 13px;
  }

  .press-logo {
    font-size: 22px;
  }

  /* Facts */
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact-card {
    padding: 24px 16px;
  }

  .fact-icon {
    font-size: 36px;
  }

  .fact-value {
    font-size: 24px;
  }

  .fact-label {
    font-size: 12px;
  }

  /* Token */
  .token-section {
    padding: 80px 0;
  }

  .token-name {
    font-size: clamp(36px, 8vw, 52px);
  }

  .token-tagline {
    font-size: 16px;
  }

  .token-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .token-feature {
    padding: 20px 16px;
  }

  .token-feature-icon {
    font-size: 28px;
  }

  .token-feature-title {
    font-size: 14px;
  }

  .token-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .token-cta-group .btn-primary,
  .token-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Community */
  .community-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .community-card {
    padding: 24px 16px;
  }

  .community-icon {
    font-size: 28px;
  }

  .community-name {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* ===== PHONE (max 480px) ===== */
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 12px;
  }

  /* Gallery single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  /* Facts single column */
  .facts-grid {
    grid-template-columns: 1fr;
  }

  /* Token single column */
  .token-features {
    grid-template-columns: 1fr;
  }

  /* Community single column */
  .community-grid {
    grid-template-columns: 1fr;
  }

  /* Tracker smaller */
  .arrival-date {
    font-size: 18px;
  }

  .arrival-countdown {
    gap: 8px;
    justify-content: center;
  }

  .countdown-item {
    min-width: 60px;
    padding: 8px 10px;
  }

  .countdown-value {
    font-size: 20px;
  }

  .stats-card {
    grid-template-columns: 1fr 1fr;
  }

  /* Story */
  .story-chapter-img img {
    height: 200px;
  }

  .story-chapter-text h3 {
    font-size: 20px;
  }

  /* Timeline */
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 44px;
  }

  /* Hero */
  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* Contract address overflow */
  .contract-address {
    font-size: 12px;
    word-break: break-all;
  }

  /* Press */
  .press-card-header {
    flex-wrap: wrap;
  }

  .press-type {
    margin-left: 0;
  }
}
/* ===== CA TOP BAR ===== */
.ca-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.15));
  border-bottom: 1px solid rgba(249, 115, 22, 0.3);
  backdrop-filter: blur(20px);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ca-top-bar:hover {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.25), rgba(251, 191, 36, 0.25));
}

.ca-top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 13px;
}

.ca-label {
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ca-address {
  color: var(--text-primary);
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.ca-copy-icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.ca-top-bar:hover .ca-copy-icon {
  transform: scale(1.2);
}

.ca-copied-msg {
  display: none;
  color: #22c55e;
  font-weight: 600;
  font-size: 12px;
  animation: fadeInUp 0.3s ease;
}

.ca-copied-msg.show {
  display: inline;
}

/* Offset navbar for CA bar */
.navbar {
  top: 38px !important;
}

@media (max-width: 768px) {
  .ca-address {
    font-size: 10px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ca-top-content {
    font-size: 11px;
  }
}
