:root {
  --bg-dark: #1D1F23;
  --text-light: #F7F7F7;
  --gold: #FABC31;
  --gold-light: #FFC83D;
  --gold-deep: #F5A900;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 24px;
  gap: 28px;
}

.logo {
  width: 140px;
  height: 140px;
}

.tagline {
  max-width: 560px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.5;
  margin: 0;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.notify-form input[type="email"] {
  background: #26282d;
  border: 1px solid #35373d;
  color: var(--text-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  min-width: 260px;
  outline: none;
  transition: border-color 0.2s ease;
}

.notify-form input[type="email"]:focus {
  border-color: var(--gold);
}

.notify-form button {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--bg-dark);
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.notify-form button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 0;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  opacity: 0.4;
}

footer a {
  color: inherit;
}

.lang-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #26282d;
  border: 1px solid #35373d;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease;
}

.lang-switch:hover {
  border-color: var(--gold-deep);
}

.lang-option {
  opacity: 0.4;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lang-option.active {
  opacity: 1;
  color: var(--gold);
}

.lang-sep {
  opacity: 0.3;
}
