:root {
  --bg: #0a0a0a;
  --text: #f0f0f0;
  --muted: #888;
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.4);
  --gold: #d4a853;
}

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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

/* ===== LOGO ===== */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.15em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 40px var(--accent-glow));
}

.logo-big {
  font-size: 1.2em;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== TAGLINE ===== */
.tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 2rem auto;
}

/* ===== LEAD ===== */
.lead {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 2.5rem;
}

/* ===== PLATFORMS ===== */
.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
}

.platform-link:hover {
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.platform-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== SOCIAL ===== */
.social-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-row a:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.15);
  transform: scale(1.1);
}

.social-row svg {
  width: 20px;
  height: 20px;
}

/* ===== CONTACT EMAIL ===== */
.contact-email {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.contact-email a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1.2rem;
  color: #555;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  gap: 0.3rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--text);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.lang-btn.active {
  background: rgba(230, 57, 70, 0.2);
  color: var(--text);
  border: 1px solid var(--accent);
  text-shadow: 0 0 8px var(--accent-glow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .platform-link {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .platform-link span {
    display: none;
  }

  .platform-link svg {
    width: 24px;
    height: 24px;
  }

  .hero-content {
    padding: 1.5rem;
  }
}
