@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #080C18;
  --color-surface: #0F1628;
  --color-gold: #C9A434;
  --color-gold-light: #E8C84A;
  --color-white: #FFFFFF;
  --color-text-secondary: #8B95A8;
  --color-border: rgba(201, 164, 52, 0.18);
  --color-border-subtle: rgba(255, 255, 255, 0.06);

  --font-heading: 'Bebas Neue', sans-serif;
  --font-sub: 'Barlow Condensed', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --max-w: 1280px;
  --radius: 4px;
  --radius-md: 8px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
  --transition-fast: 0.15s var(--ease);

  --shadow-btn: 0 4px 20px rgba(201, 164, 52, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }

h1 {
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060A14 0%, #0D1B2A 40%, #0A1525 70%, #07101E 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://youthcupdubai27.vercel.app/Hero%20Image.png') center/cover no-repeat;
  opacity: 0.2;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 164, 52, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(13, 32, 66, 0.8) 0%, transparent 60%);
}

.hero__geo {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero__geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 52, 0.06);
}

.hero__geo-circle:nth-child(1) { width: 600px; height: 600px; top: -100px; right: 200px; }
.hero__geo-circle:nth-child(2) { width: 900px; height: 900px; top: -200px; right: 0; }
.hero__geo-circle:nth-child(3) { width: 1200px; height: 1200px; top: -350px; right: -150px; }

.hero__image-right {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(transparent 0%, black 8%, black 78%, transparent 100%);
  mask-image: linear-gradient(transparent 0%, black 8%, black 78%, transparent 100%);
}

.hero__image-right img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 55% top;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(to right, rgba(8,12,24,0.92) 0%, rgba(8,12,24,0.55) 42%, rgba(8,12,24,0.05) 72%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(8,12,24,0.75) 85%, rgba(8,12,24,1) 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2rem 6rem;
}

.hero__col {
  max-width: 620px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 164, 52, 0.12);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 0.375rem 1rem 0.375rem 0.75rem;
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero__badge span {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  max-width: 100%;
  margin-bottom: 1.75rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 500;
  max-width: 100%;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__date-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(8, 12, 24, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.375rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.hero__date-badge .date-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__date-badge .date-val {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: 0.03em;
}

.hero__date-badge .date-label {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.hero__date-badge .sep {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

.hero__countdown-wrap { margin-bottom: 2.5rem; }

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--color-gold);
  color: #000;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 164, 52, 0.5);
}

.btn--primary:active { transform: translateY(0); }

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.hero__countdown-wrap .countdown-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.countdown {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  background: rgba(201, 164, 52, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  min-width: 72px;
}

.countdown__num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--color-gold);
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__col { max-width: 100%; }
  .hero__headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero__sub { font-size: 0.95rem; max-width: 90%; }
  .hero__content { padding-bottom: 9rem; }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__date-badge {
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    flex-wrap: nowrap;
  }
  .hero__date-badge .date-val { font-size: 1.35rem; }
  .hero__countdown-wrap .countdown { gap: 0.5rem; }
  .countdown__unit { min-width: 58px; padding: 0.7rem 0.75rem; }
  .countdown__num { font-size: 2rem; }
  .countdown__label { font-size: 0.6rem; }

  .hero__image-right { opacity: 0.35; }
  .hero__image-right img { object-position: 65% top; }
  .hero__video-overlay {
    background: linear-gradient(rgba(8, 12, 24, 0.15) 0%, rgba(8, 12, 24, 0.05) 50%, rgba(8, 12, 24, 0.7) 100%);
  }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(2rem, 11vw, 3rem); }
  .hero__date-badge { gap: 0.625rem; padding: 0.625rem 0.875rem; }
  .hero__date-badge .date-val { font-size: 1.2rem; }
  .hero__date-badge .sep { height: 28px; }
  .countdown__unit { min-width: 52px; padding: 0.625rem 0.5rem; }
  .countdown__num { font-size: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
