/* Vodka Casino — layout & theme */
:root {
  --bg-deep: #070b14;
  --bg-panel: #0f172a;
  --bg-card: #121c33;
  --edge: rgba(126, 203, 255, 0.22);
  --text: #e8eefc;
  --muted: #94a3c8;
  --accent: #7ecbff;
  --accent-strong: #4aa8ff;
  --gold: #f5c542;
  --gold-dim: #c9932a;
  --danger-soft: #fecaca;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 40, 120, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(74, 168, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(245, 197, 66, 0.06), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0a1224 40%, #070b14 100%);
  line-height: 1.65;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent-strong);
  color: #051018;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid var(--edge);
  padding-top: env(safe-area-inset-top, 0px);
}

.age-strip {
  margin: 0 0 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(126, 203, 255, 0.14);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.footer-age {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.35rem;
  color: #fff;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-main a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-main a:hover {
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #1a1204;
  box-shadow: 0 10px 28px rgba(245, 197, 66, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(245, 197, 66, 0.42);
}

.btn-ghost {
  background: transparent;
  border-color: var(--edge);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 52ch;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.tag {
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--edge);
  color: var(--muted);
  background: rgba(18, 28, 51, 0.65);
}

.hero-panel {
  background: linear-gradient(155deg, rgba(18, 28, 51, 0.95), rgba(10, 18, 36, 0.92));
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 70% 30%, rgba(74, 168, 255, 0.14), transparent 55%);
  pointer-events: none;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
}

.hero-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.panel-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(148, 163, 200, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.panel-list li:last-child {
  border-bottom: none;
}

.tick {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 0 0 0.65rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* Slots grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.35rem;
}

.slot-card {
  background: var(--bg-card);
  border: 1px solid rgba(126, 203, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .slot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 197, 66, 0.35);
    box-shadow: 0 18px 48px rgba(0, 30, 90, 0.35);
  }
}

.slot-thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0c1428;
}

.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.slot-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.slot-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.slot-card .btn-primary {
  margin-top: auto;
  width: 100%;
  text-decoration: none;
}

/* Article / SEO content */
.article-block {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(126, 203, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.article-block h2 {
  font-family: var(--display);
  font-size: 1.65rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.article-block h2:first-child {
  margin-top: 0;
}

.article-block h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  color: #dbe7ff;
}

.article-block p {
  margin: 0 0 1rem;
  color: #c8d4ee;
}

.article-block ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: #c8d4ee;
}

.article-block li {
  margin-bottom: 0.45rem;
}

.article-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold-dim);
  background: rgba(245, 197, 66, 0.06);
  font-size: 0.92rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--edge);
  margin-top: 2rem;
}

.footer-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-simple strong {
  color: var(--text);
}

/* ---------- Touch & narrow screens ---------- */
@media (max-width: 768px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.65rem 0.75rem;
    align-items: center;
    padding-bottom: 0.85rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-inner > .cta-row {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-main {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 0.25rem 1rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(126, 203, 255, 0.12);
    width: 100%;
  }

  .nav-main a {
    padding: 0.65rem 0.85rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(126, 203, 255, 0.15);
  }

  .header-inner .btn-primary {
    min-height: 44px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: clamp(1.25rem, 5vw, 2rem);
    padding-bottom: 2rem;
  }

  .lead {
    font-size: 1.05rem;
    max-width: none;
  }

  .hero-copy .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-copy .cta-row .btn {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
  }

  .hero-panel .btn-primary {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(1.35rem, 6.5vw, 2.65rem);
    margin-bottom: 0.85rem;
  }

  .hero-panel {
    padding: 1.35rem;
  }

  .panel-list li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section {
    padding: 2rem 0;
  }

  .section-head h2 {
    line-height: 1.2;
  }

  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 165px), 1fr));
    gap: 1rem;
  }

  .article-block h2 {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
    line-height: 1.25;
    word-break: break-word;
  }

  .article-block h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    word-break: break-word;
  }

  .article-block p {
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .footer-simple {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.75rem;
  }
}

@media (max-width: 420px) {
  .slots-grid {
    grid-template-columns: 1fr;
  }

  .tag {
    font-size: 0.78rem;
    padding: 0.4rem 0.65rem;
    line-height: 1.3;
  }

  .hero-tags {
    gap: 0.4rem;
  }

  .slot-body {
    padding: 1rem;
  }

  .slot-card .btn-primary {
    min-height: 48px;
    font-size: 1rem;
  }
}

@media (hover: none) {
  .btn:active {
    transform: scale(0.98);
  }

  .slot-card:active {
    border-color: rgba(245, 197, 66, 0.28);
  }
}
