:root {
  --ink-950: #0b1220;
  --ink-900: #0f1830;
  --ink-850: #121f3a;
  --ink-800: #172746;
  --glow-cyan: #27c3f1;
  --glow-lime: #7be38b;
  --glow-amber: #f5b454;
  --text-strong: #f4f7ff;
  --text-muted: #b3c0d9;
  --surface: rgba(18, 31, 58, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --stroke: rgba(140, 160, 190, 0.2);
  --shadow-deep: 0 28px 60px rgba(5, 10, 20, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 15%, rgba(39, 195, 241, 0.12), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(123, 227, 139, 0.12), transparent 50%),
    var(--ink-950);
  color: var(--text-strong);
  min-height: 100vh;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: rgba(12, 18, 34, 0.8);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--glow-cyan), var(--glow-lime));
  border-radius: 999px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--glow-cyan) rgba(12, 18, 34, 0.8);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--text-strong);
}

img {
  max-width: 100%;
  display: block;
}

.auv-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.85);
  border-bottom: 1px solid rgba(140, 160, 190, 0.12);
}

.auv-nav {
  padding: 1rem 0;
}

.auv-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1.35rem;
}

.auv-nav-link {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.auv-nav-link:hover,
.auv-nav-link:focus {
  color: var(--text-strong);
}

.auv-btn-outline {
  border: 1px solid rgba(140, 160, 190, 0.4);
  color: var(--text-strong);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}

.auv-btn-primary {
  background: linear-gradient(120deg, var(--glow-cyan), #49d6ff);
  border: none;
  color: #081420;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(39, 195, 241, 0.45);
  animation: glowPulse 3.2s ease-in-out infinite;
}

.auv-btn-secondary {
  background: linear-gradient(120deg, var(--glow-lime), #a3f3b5);
  border: none;
  color: #0b1b12;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(123, 227, 139, 0.4);
}

.auv-hero {
  padding: 6rem 0 4.5rem;
}

.auv-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(39, 195, 241, 0.18);
  border: 1px solid rgba(39, 195, 241, 0.4);
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  margin-bottom: 1.4rem;
}

.auv-hero h1,
.auv-section__head h2,
.auv-card h3,
.auv-panel h3,
.auv-footer h5 {
  font-family: "Space Grotesk", sans-serif;
}

.auv-hero h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.auv-hero .lead {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

.auv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.auv-hero__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.auv-app-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(140, 160, 190, 0.25);
  color: var(--text-strong);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.auv-app-badge span {
  position: absolute;
  top: -8px;
  right: -12px;
  background: rgba(11, 18, 32, 0.9);
  color: var(--text-muted);
  border: 1px solid rgba(140, 160, 190, 0.3);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
}

.auv-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.auv-metric {
  background: var(--surface-soft);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(140, 160, 190, 0.15);
}

.auv-metric h4 {
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.auv-metric p {
  margin: 0;
  color: var(--text-muted);
}

.auv-panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(140, 160, 190, 0.18);
  backdrop-filter: blur(10px);
}

.auv-panel p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.auv-panel ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.auv-section {
  padding: 4.5rem 0;
}

.auv-section__head {
  margin-bottom: 2.5rem;
}

.auv-section__head h1,
.auv-section__head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.auv-section__head p {
  color: var(--text-muted);
  max-width: 640px;
}

.auv-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(140, 160, 190, 0.2);
  box-shadow: 0 20px 40px rgba(7, 12, 24, 0.35);
  height: 100%;
}

.auv-card p {
  color: var(--text-muted);
}

.auv-card .auv-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 180, 84, 0.2);
  color: #ffe0b4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 1rem;
}

.auv-grid-card img {
  border-radius: 16px;
  margin-bottom: 1rem;
}

.auv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(123, 227, 139, 0.2);
  color: #d9ffe6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 0.6rem;
}

.auv-cta-band {
  padding: 3rem 0;
  background: linear-gradient(120deg, rgba(39, 195, 241, 0.2), rgba(123, 227, 139, 0.15));
  border-top: 1px solid rgba(140, 160, 190, 0.2);
  border-bottom: 1px solid rgba(140, 160, 190, 0.2);
}

.auv-cta-band h3 {
  font-weight: 700;
}

.auv-highlight {
  background: rgba(11, 18, 32, 0.6);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(140, 160, 190, 0.2);
}

.auv-leaderboard {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(140, 160, 190, 0.18);
}

.auv-leaderboard li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(140, 160, 190, 0.1);
  color: var(--text-muted);
}

.auv-leaderboard li:last-child {
  border-bottom: none;
}

.auv-faq .accordion-button {
  background: rgba(11, 18, 32, 0.85);
  color: var(--text-strong);
}

.auv-faq .accordion-body {
  background: rgba(11, 18, 32, 0.65);
  color: var(--text-muted);
}

.auv-footer {
  padding: 4rem 0 2.5rem;
  background: rgba(7, 12, 22, 0.92);
  border-top: 1px solid rgba(140, 160, 190, 0.18);
}

.auv-footer p,
.auv-footer li,
.auv-footer small {
  color: var(--text-muted);
}

.auv-footer ul {
  padding-left: 0;
  list-style: none;
}

.auv-footer a {
  color: var(--text-muted);
}

.auv-footer a:hover {
  color: var(--text-strong);
}

.auv-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-right: 0.4rem;
}

.auv-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
  margin-top: 2.5rem;
}

.auv-partner-text {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.auv-footer__bottom {
  border-top: 1px solid rgba(140, 160, 190, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.auv-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(245, 180, 84, 0.2);
  border: 1px solid rgba(245, 180, 84, 0.4);
  font-weight: 700;
}

.auv-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-strong);
}

.auv-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--glow-lime);
  box-shadow: 0 0 10px rgba(123, 227, 139, 0.7);
}

.auv-cookie {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: rgba(11, 18, 32, 0.95);
  border: 1px solid rgba(140, 160, 190, 0.2);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 999;
}

.auv-cookie button {
  align-self: flex-start;
}

.auv-toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(11, 18, 32, 0.9);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(140, 160, 190, 0.2);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 998;
}

.auv-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.auv-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.auv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.auv-legal {
  padding: 4.5rem 0 5rem;
}

.auv-legal .auv-panel {
  margin-bottom: 1.8rem;
}

.auv-sidebar {
  position: fixed;
  top: 35%;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 800;
}

.auv-sidebar a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-strong);
  border: 1px solid rgba(140, 160, 190, 0.2);
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(39, 195, 241, 0.4);
  }
  50% {
    box-shadow: 0 0 28px rgba(39, 195, 241, 0.7);
  }
}

@media (max-width: 991px) {
  .auv-sidebar {
    display: none;
  }
  .auv-panel {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .auv-hero {
    padding: 4.5rem 0 3.5rem;
  }
  .auv-cookie {
    left: 1rem;
    right: 1rem;
  }
}
