:root {
  --gold-1: #fff3b0;
  --gold-2: #f7c948;
  --gold-3: #b8860b;
  --bg: #050505;
  --text: #f3f0e6;
  --text-dim: #a9a49a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  position: relative;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(247, 201, 72, 0.16) 0%, rgba(247, 201, 72, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.logo {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(247, 201, 72, 0.35));
  margin-bottom: 6px;
  mix-blend-mode: screen;
}

.brand {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 45%, var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: -12px 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(247, 201, 72, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 10px var(--gold-2);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.description {
  margin: 0;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
}

.countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.05em;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(247, 201, 72, 0.3);
  background: rgba(247, 201, 72, 0.05);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-2);
}

.social-link:hover {
  border-color: var(--gold-2);
  background: rgba(247, 201, 72, 0.12);
  transform: translateY(-2px);
}

.social-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.footer {
  margin-top: 22px;
  font-size: 0.78rem;
  color: #6b675e;
}

.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(247, 201, 72, 0.25);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(6px);
}

.lang-switcher button {
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switcher button:hover {
  color: var(--text);
}

.lang-switcher button.is-active {
  background: rgba(247, 201, 72, 0.15);
  color: var(--gold-2);
}
