* VodkaCasino — Midnight Premium skin */

body{
  background:
    radial-gradient(1100px 600px at 12% -10%, rgba(124,92,255,0.10), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(124,92,255,0.06), transparent 55%),
    var(--bg);
}

.site-header{
  background: rgba(11,11,15,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.hero{
  background:
    radial-gradient(700px 380px at 85% 15%, rgba(124,92,255,0.14), transparent 65%),
    linear-gradient(180deg, var(--panel), transparent 70%);
  border-bottom: 1px solid var(--line);
}

.hero-title{
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 35%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2, h3{
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section + .section{
  border-top: 1px solid var(--line);
}

.badge{
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.15) inset;
}

.fact{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.card, .feature, .offer, .access, .faq-item, .tile{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover, .feature:hover, .tile:hover, .access:hover{
  transform: translateY(-2px);
  border-color: rgba(124,92,255,0.4);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(124,92,255,0.35);
}

.feature .icon{
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 6px);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.25) inset;
}

.tile{
  position: relative;
  overflow: hidden;
}
.tile::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  opacity:0; transition: opacity .25s ease;
  pointer-events:none;
}
.tile:hover::after{ opacity:1; }
.tile.noimg{
  background: linear-gradient(150deg, var(--panel-2), var(--panel));
}
.tile .nm{ color: var(--text); font-weight: 600; }
.tile .gp{ color: var(--text-2); }

.tabs .tab{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
  transition: all .2s ease;
}
.tabs .tab.active, .tabs .tab:hover{
  color: var(--on-accent);
  background: var(--accent);
  border-color: rgba(124,92,255,0.4);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.4);
}

.btn{ border-radius: calc(var(--radius) - 4px); transition: all .2s ease; }

.btn-primary{
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid rgba(124,92,255,0.4);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.4), 0 8px 24px rgba(124,92,255,0.25);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.55), 0 12px 32px rgba(124,92,255,0.4);
  filter: brightness(1.08);
}

.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover{
  border-color: rgba(124,92,255,0.4);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.25);
  transform: translateY(-2px);
}

.chips .chip{
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text-2);
  border-radius: 999px;
}

.offer{
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  position: relative;
}
.offer::before{
  content:"";
  position:absolute; inset:0;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.3) inset;
  pointer-events:none;
}
.offer-amount{
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust{
  border-top: 1px solid var(--line);
  color: var(--text-2);
}
.trust .t18{
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(124,92,255,0.2) inset;
}

.faq-item{ overflow:hidden; }
.faq-q{ color: var(--text); font-weight: 600; }
.faq-a{ color: var(--prose); }

.article a, .prose a{
  color: var(--accent-2);
  text-decoration-color: rgba(124,92,255,0.35);
}

.footer, .foot-cols{
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(124,92,255,0.04));
}