/* ============================================
   EVG NOE COMTE - STYLE ULTRA HYPE
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Bebas+Neue&family=Inter:wght@400;600;700;900&family=Permanent+Marker&display=swap');

:root {
  --neon-pink: #ff0080;
  --neon-purple: #9b00ff;
  --neon-blue: #00d4ff;
  --neon-green: #00ff88;
  --neon-orange: #ff6600;
  --dark-bg: #080810;
  --dark-card: #12121e;
  --dark-surface: #1a1a2e;
  --white: #ffffff;
  --yellow: #ffe600;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 3px; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 8, 16, 0.85);
  border-bottom: 2px solid var(--neon-pink);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-pink);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--neon-pink); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 24px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/group-photo.jpeg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.3) saturate(1.5);
  transform: scale(1.05);
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.12) translateX(-20px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,16,0.2) 0%,
    rgba(155,0,255,0.12) 30%,
    rgba(255,0,128,0.12) 60%,
    rgba(8,8,16,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--neon-pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,128,0.7); }
  50% { box-shadow: 0 0 0 12px rgba(255,0,128,0); }
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-title .line1 {
  display: block;
  color: var(--white);
  text-shadow: 0 0 60px rgba(255,0,128,0.5);
}

.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 50%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,0,128,0.8));
}

.hero-subtitle {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: 6px;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,230,0,0.6);
  margin-bottom: 32px;
  text-transform: uppercase;
  animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.7; }
  97% { opacity: 1; }
  98% { opacity: 0.6; }
  99% { opacity: 1; }
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(255,0,128,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255,0,128,0.6);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--neon-blue);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(0,212,255,0.1);
  box-shadow: 0 8px 32px rgba(0,212,255,0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 3px solid var(--neon-pink);
  border-bottom: 3px solid var(--neon-pink);
  transform: rotate(45deg);
  margin: -8px auto;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 2px solid;
  border-radius: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}

/* ============================================
   THE MAN SECTION
   ============================================ */
#the-man {
  background: var(--dark-surface);
  border-top: 4px solid var(--neon-blue);
  border-bottom: 4px solid var(--neon-blue);
}

#the-man::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.man-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.man-photo-wrap {
  position: relative;
}

.man-photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.man-photo-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 4px solid var(--neon-blue);
  border-radius: 8px;
  z-index: 0;
  animation: frame-glow 2s ease-in-out infinite alternate;
}

@keyframes frame-glow {
  from { box-shadow: 0 0 20px rgba(0,212,255,0.4); }
  to   { box-shadow: 0 0 50px rgba(0,212,255,0.8), 0 0 80px rgba(0,212,255,0.3); }
}

.man-photo-frame::after {
  content: 'THE MAN';
  position: absolute;
  bottom: -20px;
  right: -8px;
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  color: rgba(0,212,255,0.08);
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.man-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  max-height: 520px;
  filter: saturate(1.2) contrast(1.05);
}

.man-text .section-label {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

.man-text .section-title {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.man-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.man-tag {
  padding: 8px 18px;
  background: rgba(0,212,255,0.1);
  border: 2px solid rgba(0,212,255,0.4);
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-blue);
  transition: all 0.2s;
}

.man-tag:hover {
  background: rgba(0,212,255,0.2);
  border-color: var(--neon-blue);
  transform: translateY(-2px);
}

/* Countdown */
.countdown-wrap {
  margin-top: 32px;
  padding: 24px;
  background: rgba(0,212,255,0.06);
  border: 2px solid rgba(0,212,255,0.2);
  border-radius: 8px;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 16px;
}

.countdown-grid {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 70px;
}

.countdown-num {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,230,0,0.5);
}

.countdown-unit {
  display: block;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ============================================
   THE GOD SECTION
   ============================================ */
#the-god {
  background: var(--dark-bg);
  text-align: center;
  padding: 80px 24px 100px;
}

#the-god::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(155,0,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.god-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.god-crown {
  font-size: 5rem;
  margin-bottom: 16px;
  display: block;
  animation: spin-crown 6s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255,230,0,0.8));
}

@keyframes spin-crown {
  0% { transform: rotate(-5deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.05); }
  50% { transform: rotate(-3deg) scale(1); }
  75% { transform: rotate(4deg) scale(1.03); }
  100% { transform: rotate(-5deg) scale(1); }
}

.god-section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 2px solid var(--neon-purple);
  border-radius: 2px;
  margin-bottom: 20px;
  color: var(--neon-purple);
}

.god-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(155,0,255,0.5));
  margin-bottom: 8px;
}

.god-subtitle {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  letter-spacing: 6px;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,230,0,0.6);
  margin-bottom: 40px;
}

.god-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.god-card {
  padding: 24px 20px;
  border: 3px solid;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.god-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.god-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: currentColor;
  transition: opacity 0.3s;
}

.god-card:hover::before { opacity: 0.1; }

.god-card.card-purple {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(155,0,255,0.2);
}
.god-card.card-purple:hover {
  box-shadow: 0 12px 40px rgba(155,0,255,0.4);
}

.god-card.card-pink {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255,0,128,0.2);
}
.god-card.card-pink:hover {
  box-shadow: 0 12px 40px rgba(255,0,128,0.4);
}

.god-card.card-green {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}
.god-card.card-green:hover {
  box-shadow: 0 12px 40px rgba(0,255,136,0.4);
}

.god-card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.god-card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
}

.god-card-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.god-big-quote {
  margin: 40px auto;
  padding: 32px 40px;
  border-left: 6px solid var(--neon-purple);
  background: rgba(155,0,255,0.08);
  border-radius: 0 8px 8px 0;
  text-align: left;
  max-width: 700px;
}

.god-big-quote p {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.god-big-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-purple);
  font-style: normal;
}

.god-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.god-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float-badge 3s ease-in-out infinite;
}

.god-badge:nth-child(2) { animation-delay: 0.5s; }
.god-badge:nth-child(3) { animation-delay: 1s; }
.god-badge:nth-child(4) { animation-delay: 1.5s; }

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.god-badge.b1 { background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)); }
.god-badge.b2 { background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange)); }
.god-badge.b3 { background: linear-gradient(135deg, var(--neon-blue), var(--neon-green)); }
.god-badge.b4 { background: linear-gradient(135deg, var(--yellow), var(--neon-orange)); color: var(--dark-bg); }

/* ============================================
   MOMENTS SECTION
   ============================================ */
#moments {
  background: var(--dark-surface);
  border-top: 4px solid var(--neon-green);
}

#moments::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(0,255,136,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.moments-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.moments-header {
  text-align: center;
  margin-bottom: 60px;
}

.moments-header .section-label {
  color: var(--neon-green);
  border-color: var(--neon-green);
}

.moments-header .section-title {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.moments-timeline {
  position: relative;
  padding-left: 40px;
}

.moments-timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--neon-green), var(--neon-blue), var(--neon-purple));
  border-radius: 2px;
}

.moment-item {
  position: relative;
  margin-bottom: 48px;
  padding: 24px 28px;
  background: rgba(0,255,136,0.04);
  border: 2px solid rgba(0,255,136,0.2);
  border-radius: 8px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.moment-item:hover {
  transform: translateX(8px);
  border-color: var(--neon-green);
  box-shadow: 0 8px 32px rgba(0,255,136,0.15);
}

.moment-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 16px var(--neon-green);
  border: 3px solid var(--dark-surface);
}

.moment-time {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 8px;
}

.moment-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
}

.moment-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.moment-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.2rem;
  opacity: 0.7;
}

/* Photo gallery placeholder */
.moments-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 60px;
}

.gallery-slot {
  aspect-ratio: 1;
  border: 3px dashed rgba(0,255,136,0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.gallery-slot:first-child {
  border: none;
  overflow: hidden;
}

.gallery-slot:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-slot:first-child:hover img {
  transform: scale(1.05);
}

.gallery-slot:not(:first-child):hover {
  border-color: var(--neon-green);
  background: rgba(0,255,136,0.05);
}

.gallery-slot-icon {
  font-size: 2rem;
  opacity: 0.4;
}

.gallery-slot-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 0 12px;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
  padding: 48px 24px;
  text-align: center;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.stat-item {}

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark-bg);
  border-top: 4px solid var(--neon-pink);
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: 'EVG';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(8rem, 25vw, 18rem);
  color: rgba(255,0,128,0.04);
  letter-spacing: 8px;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  letter-spacing: 6px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.footer-msg {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.footer-names {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,230,0,0.4);
  margin-bottom: 32px;
}

.footer-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  margin: 28px auto;
  border-radius: 2px;
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .man-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .man-photo-frame::after {
    display: none;
  }

  .god-big-quote {
    padding: 24px 20px;
  }

  .moments-timeline {
    padding-left: 28px;
  }

  .moment-item::before {
    left: -21px;
  }

  .countdown-grid {
    justify-content: center;
  }

  section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
