
:root {
  --bg: #020b16;
  --text: #f7f8fb;
  --muted: #9db2cb;
  --gold: #d9a24a;
  --gold-light: #f4ca7a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at center, rgba(5,15,30,0.12), rgba(2,8,18,0.88)),
    url("../assets/wallpapers/wallpaper.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

.background-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(2,8,18,0.35),
      rgba(2,8,18,0.75));
  pointer-events: none;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 48px;

  z-index: 10;
}

.brand-small {
  font-size: 1rem;
  letter-spacing: 0.45em;
  font-weight: 300;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.hero {
  position: relative;
  z-index: 2;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 120px 24px 80px;
}

.hero-logo {
  margin-bottom: 34px;
}

.hero-logo img {
  width: min(340px, 68vw);
  height: auto;

  filter:
    drop-shadow(0 0 26px rgba(255,255,255,0.08))
    drop-shadow(0 0 40px rgba(217,162,74,0.12));
}

.hero-content {
  text-align: center;
  max-width: 920px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.34em;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 200;
  letter-spacing: 0.22em;
  line-height: 0.95;

  text-shadow: 0 0 30px rgba(255,255,255,0.12);
}

.divider {
  width: 220px;
  height: 1px;

  margin: 30px auto 22px;

  background:
    linear-gradient(to right,
      transparent,
      rgba(217,162,74,0.95),
      transparent);
}

.tagline {
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.92rem;

  margin-bottom: 30px;
}

.subtitle {
  color: var(--muted);

  max-width: 760px;

  margin: 0 auto;

  line-height: 1.8;
  font-size: 1.1rem;
}

.coming-soon {
  margin-top: 40px;

  color: var(--gold-light);

  letter-spacing: 0.24em;
  text-transform: uppercase;

  font-size: 0.92rem;
}

.actions {
  margin-top: 42px;

  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;

  padding: 14px 26px;

  border-radius: 999px;

  letter-spacing: 0.18em;
  font-size: 0.78rem;

  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #06101d;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

footer {
  position: relative;
  bottom: 18px;
  left: 0;
  right: 0;

  text-align: center;

  color: rgba(255,255,255,0.55);

  letter-spacing: 0.14em;
  font-size: 0.72rem;

  z-index: 5;
}

.klaro .cookie-notice {
  background: rgba(4, 12, 24, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 162, 74, 0.28);
  border-radius: 18px;
  color: #f7f8fb;
}

.klaro .cookie-notice .cn-buttons button {
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.klaro .cookie-notice .cm-btn-success {
  background: linear-gradient(135deg, #f4ca7a, #d9a24a);
  color: #07101d;
}

.klaro .cookie-notice .cm-btn-info {
  background: rgba(255,255,255,0.08);
  color: #f7f8fb;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 50;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(217, 162, 74, 0.45);
  border-radius: 50%;

  background: rgba(4, 12, 24, 0.82);
  color: #f4ca7a;
  opacity: 0.92;

  font-size: 1.25rem;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);

  backdrop-filter: blur(12px);

  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(217, 162, 74, 0.18);
  opacity: 1;
}

.privacy-settings {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(122, 191, 255, 0.38);
  border-radius: 50%;

  background: rgba(4, 12, 24, 0.82);
  color: #7abfff;
  opacity: 0.92;
  
  font-size: 1.05rem;
  cursor: pointer;

  backdrop-filter: blur(12px);

  transition:
    transform 180ms ease,
    background 180ms ease;
}

.privacy-settings:hover {
  transform: translateY(-2px);
  background: rgba(122, 191, 255, 0.14);
  opacity: 1;
}

.back-to-top i,
.privacy-settings i {
  font-size: 1rem;
}

@media (max-width: 760px) {

  .topbar {
    padding: 22px 24px;
  }

  nav {
    display: none;
  }

  h1 {
    letter-spacing: 0.12em;
  }

  .subtitle {
    font-size: 1rem;
  }

  .coming-soon {
    letter-spacing: 0.14em;
  }

  footer {
    position: relative;
    padding-bottom: 24px;
    margin-top: 24px;
  }
}
