:root {
  --gold: #D4AF37;
  --dark-gold: #B4951B;
}

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

body {
  background-color: #0A0A0A;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: none;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
              url('/api/placeholder/1200/800');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, transparent 20%, #0A0A0A 80%);
}

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

.pyro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pyro > .before, .pyro > .after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: -120px -218.66667px blue, 248px -16.66667px #00ff84, 190px 16.33333px #002bff, -113px -308.66667px #ff009d, -109px -287.66667px #ffb300, -50px -313.66667px #ff006e, 226px -31.66667px #ff4000, 180px -351.66667px #ff00d0, -12px -338.66667px #00f6ff, 220px -388.66667px #99ff00, -69px -27.66667px #ff0400, -111px -339.66667px #6200ff, 155px -237.66667px #00ddff, -152px -380.66667px #00ffd0, -50px -37.66667px #00ffdd, -95px -175.66667px #a6ff00, -88px 10.33333px #0d00ff, 112px -309.66667px #005eff, 69px -415.66667px #ff00a6, 168px -100.66667px #ff004c, -244px 24.33333px #ff6600, 97px -325.66667px #ff0066, -211px -182.66667px #00ffa2, 236px -126.66667px #b700ff, 140px -196.66667px #9000ff, 125px -175.66667px #00bbff, 118px -381.66667px #ff002f, 144px -111.66667px #ffae00, 36px -78.66667px #f600ff, -63px -196.66667px #c800ff, -218px -227.66667px #d4ff00, -134px -377.66667px #ea00ff, -36px -412.66667px #ff00d4, 209px -106.66667px #00fff2, 91px -278.66667px #000dff, -22px -191.66667px #9dff00, 139px -392.66667px #a6ff00, 56px -2.66667px #0099ff, -156px -276.66667px #ea00ff, -163px -233.66667px #00fffb, -238px -346.66667px #00ff73, 62px -363.66667px #0088ff, 244px -170.66667px #0062ff, 224px -142.66667px #b300ff, 141px -208.66667px #9000ff, 211px -285.66667px #ff6600, 181px -128.66667px #1e00ff, 90px -123.66667px #c800ff, 189px 70.33333px #00ffc8, -18px -383.66667px #00ff33, 100px -6.66667px #ff008c;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  max-width: 200px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.05);
}

.gold-text {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.countdown {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gold);
  margin: 2rem 0;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.message-section {
  background: linear-gradient(45deg, #0A0A0A, #1A1A1A);
  padding: 80px 0;
  position: relative;
}

.message-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease;
}

.message-card:hover {
  transform: translateY(-10px);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  margin: 15px 0;
  padding-left: 30px;
  position: relative;
}

.benefits-list li::before {
  content: '✨';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.social-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: white;
  transform: scale(1.1) rotate(5deg);
}

/* Footer */
footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 30px 0;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}

.map-container iframe {
  display: block;
  margin: 0 auto;
}

/* Special Links */
a.gold-text.sparkle {
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.gold-text.sparkle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

a.gold-text.sparkle:hover::before {
  transform: scaleX(1);
}
