:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
}

section {
  scroll-margin-top: 92px;
}

.hero-glow {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), rgba(15, 23, 42, 0));
  filter: blur(12px);
}

.hero-glow-2 {
  position: absolute;
  left: -160px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0));
  filter: blur(14px);
}

.nav-link {
  color: rgb(203 213 225);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: rgb(255 255 255);
}

.mobile-link {
  border: 1px solid rgb(51 65 85);
  background: rgba(15, 23, 42, 0.6);
  color: rgb(226 232 240);
  border-radius: 0.9rem;
  padding: 0.8rem 0.9rem;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  border-color: rgb(148 163 184);
  color: rgb(255 255 255);
}

.scrolled-nav {
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(10px);
  border-color: rgba(71, 85, 105, 0.45);
}

.badge {
  border: 1px solid rgb(51 65 85);
  background: rgb(15 23 42);
  color: rgb(241 245 249);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.country-tile {
  border: 1px solid rgb(51 65 85);
  background: rgba(15, 23, 42, 0.65);
  border-radius: 1rem;
  padding: 1rem;
}

.country-flag {
  font-size: 1.5rem;
  line-height: 1;
}

.country-name {
  margin-top: 0.5rem;
  font-weight: 800;
  color: rgb(248 250 252);
}

.country-status {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgb(148 163 184);
  font-weight: 700;
}

.country-live {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.15), 0 24px 80px rgba(8, 145, 178, 0.18);
}

.country-live .country-status {
  color: rgb(165 243 252);
}

.country-next {
  opacity: 0.88;
}

.store-btn {
  border-radius: 999px;
  background: rgb(15 23 42);
  border: 1px solid rgb(51 65 85);
  color: rgb(248 250 252);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.store-btn:hover,
.store-btn:focus-visible {
  border-color: rgb(125 211 252);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .hero-glow {
    right: -180px;
  }
  .hero-glow-2 {
    left: -240px;
  }
}
