:root{
  --bg:#0F1115;
  --panel:#12141A;
  --muted:#98A2B3;
  --text:#E5E7EB;
  --heading:#F9FAFB;
  --accent:#8B5CF6; /* change to your brand if desired */
  --accent-2:#3B82F6;
  --ring: color-mix(in srgb, var(--accent) 60%, transparent);
  --radius:14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow-sm: 0 6px 16px rgba(0,0,0,.25);
  --space: clamp(16px, 3vw, 28px);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(139,92,246,.10), transparent 60%) , var(--bg);
  color:var(--text);
  font: 400 16px/1.6 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji','Segoe UI Emoji';
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.brand{
  color:var(--heading);
  font-weight:800;
  letter-spacing:.2px;
  text-decoration:none;
  font-size:20px;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  margin-left:18px;
  padding:8px 10px;
  border-radius:10px;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover, .nav a:focus-visible{
  color:var(--heading);
  background:rgba(255,255,255,.04);
  outline:none;
}

.hero{
  padding: clamp(36px, 6vw, 72px) 0 clamp(18px, 4vw, 28px);
  text-align:center;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(36px, 6vw, 64px);
  line-height:1.05;
  color:var(--heading);
  letter-spacing:.2px;
}
.hero .sub{
  margin:0 auto;
  color:var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 820px;
}
.cta-row{
  margin-top:22px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .05s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  font-weight:600;
  letter-spacing:.2px;
}
.btn:active{ transform: translateY(1px); }
.btn.primary{
  background:linear-gradient(180deg, color-mix(in srgb, var(--accent) 30%, white 0%), var(--accent));
  color:white;
  box-shadow: 0 8px 20px rgba(139,92,246,.35);
}
.btn.primary:hover{ filter: saturate(1.1) brightness(1.03); }
.btn.ghost{
  background:rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color:var(--heading);
}
.btn.ghost:hover{
  background:rgba(255,255,255,.06);
}

.demo{
  padding: clamp(28px, 6vw, 70px) 0;
}
.demo-header h2{
  margin:0 0 6px;
  font-size: clamp(24px, 3.6vw, 36px);
  color:var(--heading);
}
.demo-header p{
  margin:0 0 18px;
  color:var(--muted);
  max-width: 800px;
}
.player{
  margin-top:16px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: clamp(12px, 2vw, 18px);
  box-shadow: var(--shadow);
}
.video{
  width:100%;
  border-radius: calc(var(--radius) - 6px);
  background:#0B0C10;
  display:block;
  box-shadow: var(--shadow-sm);
}

.lang-switch{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.chip{
  appearance:none;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color:var(--text);
  padding:8px 12px;
  border-radius:12px;
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .05s ease;
  font-weight:600;
}
.chip:hover{
  background: rgba(255,255,255,.06);
}
.chip:active{ transform: translateY(1px); }
.chip.active{
  border-color: color-mix(in srgb, var(--accent) 60%, white 0%);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  box-shadow: 0 6px 18px rgba(139,92,246,.25);
  color:white;
}

.hint{
  margin: 10px 2px 0;
  color:var(--muted);
  font-size:13px;
}

.usps{
  padding: clamp(28px, 6vw, 70px) 0;
}
.usps h2{
  margin:0 0 12px;
  font-size: clamp(24px, 3.6vw, 36px);
  color:var(--heading);
}
.grid{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 720px){
  .grid{ grid-template-columns: repeat(3, 1fr); }
}
.grid li{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding:18px;
  min-height: 140px;
}
.grid h3{
  margin:0 0 6px;
  color:var(--heading);
  font-size:18px;
}
.grid p{
  margin:0;
  color:var(--muted);
}

.contact{
  padding: clamp(28px, 6vw, 70px) 0;
}
.contact h2{
  margin:0 0 6px;
  font-size: clamp(24px, 3.6vw, 36px);
  color:var(--heading);
}
.contact p{ color:var(--muted); margin:0 0 10px; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding:18px;
  box-shadow: var(--shadow);
  margin-top:14px;
}

.field{
  display:flex;
  flex-direction:column;
  margin-bottom:14px;
}
label{
  font-weight:600;
  color:var(--text);
  margin-bottom:6px;
}
input, textarea, select{
  width:100%;
  color:var(--heading);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  outline:none;
  padding:12px 12px;
  border-radius:12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea{ resize: vertical; }
select{
  cursor: pointer;
}
select option{
  background: var(--panel);
  color: var(--heading);
}
input::placeholder, textarea::placeholder{ color: #6B7280; }
input:focus, textarea:focus, select:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--ring);
  background: rgba(255,255,255,.05);
}

.err{
  display:block;
  color: #FCA5A5;
  font-size:12px;
  min-height: 16px;
  margin-top:6px;
}

.hp{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

.actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
#formStatus{
  margin:0;
  min-height: 20px;
  color: var(--muted);
  font-size:14px;
}

.privacy{ color:var(--muted); margin-top:10px; }

.site-footer{
  padding: 30px 0 60px;
  color:var(--muted);
  text-align:center;
}

/* Focus outline for keyboard users */
:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

/* Age Verification Splash Screen */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-overlay[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-verification-content {
  width: min(500px, 90%);
  padding: var(--space);
}

.age-verification-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-verification-card h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--heading);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.age-verification-card p {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.6;
}

.age-verification-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

@media (min-width: 480px) {
  .age-verification-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.age-verification-buttons .btn {
  flex: 1;
  min-width: 140px;
}

.age-verification-disclaimer {
  margin: 20px 0 0 !important;
  font-size: 12px !important;
  color: var(--muted) !important;
  line-height: 1.4 !important;
}