
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788427292/style.css --- */
/* ============================================================
   Ля Casino — Brand Stylesheet 2026
   Dark neon-pink / black brand identity
   ============================================================ */

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --base:    #0B0B0B;
  --deep:    #1F071D;
  --accent:  #FF2DA6;
  --accent2: #FF68BE;
  --surface: #0B0B0B;
  --ink:     #E6E6E6;
  --muted:   #1F071D;

  --radius:  16px;
  --radius-sm: 8px;
  --container: 1280px;

  --font-head: Impact, "Arial Narrow", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body: Georgia, "Palatino Linotype", Palatino, serif;

  --glow: 0 0 18px rgba(255,45,166,.35);
  --glow-lg: 0 0 40px rgba(255,45,166,.25);
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); margin-bottom: .5rem; color: var(--accent2); }

p { margin-bottom: 1rem; }

a {
  color: var(--accent2);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--accent); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ----------------------------------------------------------
   4. LAYOUT HELPERS
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

.main-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* ----------------------------------------------------------
   5. HEADER
   ---------------------------------------------------------- */
.site-header {
  background: var(--base);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--accent);
  box-shadow: var(--glow);
}

/* Top utility strip */
.header-top-strip {
  background: var(--deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .3rem 1rem;
  font-size: .72rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  opacity: .85;
}

.age-notice { color: var(--accent); font-weight: 700; }
.header-strip-right { color: var(--ink); }

/* Header main row */
.header-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: .75rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   6. LOGO
   ---------------------------------------------------------- */
.logo,
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  gap: .05em;
  flex-shrink: 0;
}
.logo:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ЛЯ block */
.logo-lya {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -.02em;
  background: linear-gradient(160deg, #c8c8c8 0%, #ffffff 45%, #a8a8a8 75%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

/* pink star between Л and Я */
.logo-star {
  font-style: normal;
  font-size: .7em;
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
  vertical-align: middle;
  display: inline-block;
  margin-inline: .05em;
}

/* Casino script */
.logo-casino {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--accent);
  letter-spacing: .04em;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  line-height: 1.2;
}

/* double underline swash */
.logo-casino::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 0;
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 4px 0 0 var(--accent);
}

/* ----------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------- */
.main-nav {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .85rem;
  color: var(--ink);
  padding: .4rem .65rem;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.main-nav a:hover {
  color: var(--accent);
  background: rgba(255,45,166,.12);
}
.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ----------------------------------------------------------
   8. BUTTONS
   ---------------------------------------------------------- */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: .55rem 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* inner highlight */
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}

.btn-cta:hover {
  background: var(--accent2);
  box-shadow: 0 0 28px rgba(255,45,166,.6);
  transform: translateY(-1px);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.btn-cta-large {
  font-size: 1.1rem;
  padding: .8rem 2rem;
  border-radius: var(--radius-sm);
}

.nav-cta {
  margin-left: auto;
  font-size: .8rem;
  padding: .45rem 1rem;
}

/* ----------------------------------------------------------
   9. BONUS BANNERS
   ---------------------------------------------------------- */
.bonus-banner {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

/* subtle neon ambient */
.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,45,166,.15) 0%, transparent 70%);
  pointer-events: none;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.banner-text { flex: 1; min-width: 0; }

.banner-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: var(--accent2);
  margin-bottom: .4rem;
}

.banner-headline {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .5rem;
  text-shadow: 0 0 20px rgba(255,45,166,.4);
}

.banner-sub {
  font-size: .85rem;
  color: var(--accent2);
  margin: 0;
  font-family: var(--font-body);
}

/* thin accent underline strip */
.banner-underline {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--accent) 100%);
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   10. SECTIONS — GENERAL SPACING
   ---------------------------------------------------------- */
.intro-section,
.bonuses-section,
.games-section,
.payments-section,
.mobile-section,
.faq-section,
.cards-section {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,45,166,.15);
  margin-bottom: 3rem;
}
.intro-section h2,
.bonuses-section h2,
.games-section h2,
.payments-section h2,
.mobile-section h2,
.faq-section h2,
.cards-section h2 {
  margin-bottom: 1rem;
  color: var(--ink);
}

.intro-section h2 { margin-top: 2rem; }
.bonuses-section h3,
.games-section h3,
.payments-section h3 {
  margin-top: 1.5rem;
}

/* ----------------------------------------------------------
   11. TABLES
   ---------------------------------------------------------- */
.table-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  margin-top: 1.5rem;
  box-shadow: var(--glow);
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .92rem;
}

table thead tr {
  background: var(--base);
}

table thead th {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--accent);
  font-size: .8rem;
}

table tbody tr:nth-child(odd)  { background: rgba(31,7,29,.55); }
table tbody tr:nth-child(even) { background: rgba(11,11,11,.8); }

table tbody td {
  padding: .65rem 1rem;
  text-align: left;
  color: var(--ink);
  border-bottom: 1px solid rgba(255,45,166,.1);
  vertical-align: middle;
}

table tbody tr:last-child td { border-bottom: none; }

table tbody tr:hover { background: rgba(255,45,166,.08); }

/* ----------------------------------------------------------
   12. FAQ ACCORDION
   ---------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
}

.faq-item {
  background: var(--deep);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(.85rem, 2.5vw, 1rem);
  color: var(--ink);
  list-style: none;
  user-select: none;
  gap: 1rem;
  transition: background .2s;
}

/* hide default marker */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question:hover { background: rgba(255,45,166,.1); }
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* CSS-only chevron */
.faq-chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform .3s ease;
  margin-top: -4px;
}

details[open] > .faq-question .faq-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

details[open] > .faq-question {
  background: rgba(255,45,166,.12);
  color: var(--accent2);
  border-bottom: 1px solid rgba(255,45,166,.25);
}

.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,45,166,.15);
}
.faq-answer p { margin-bottom: 0; }

/* ----------------------------------------------------------
   13. CARDS
   ---------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.card {
  background: var(--deep);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  position: relative;
  box-shadow: var(--glow);
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
}

/* accent left border */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 0;
}

.card:hover {
  box-shadow: var(--glow-lg);
  transform: translateY(-2px);
}

.card h3 {
  color: var(--accent2);
  margin-bottom: .75rem;
  font-size: 1.1rem;
}

.card p {
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--base);
  border-top: 1px solid var(--accent);
  box-shadow: 0 -2px 24px rgba(255,45,166,.18);
  padding-block: 2.5rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: .25rem;
}

.footer-info {
  font-size: .85rem;
  color: rgba(230,230,230,.7);
  line-height: 1.6;
  max-width: 680px;
}

.footer-disclaimer {
  font-size: .78rem;
  color: rgba(230,230,230,.45);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-links a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .78rem;
  color: var(--ink);
  padding: .3rem .7rem;
  border: 1px solid rgba(255,45,166,.35);
  border-radius: var(--radius-sm);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,45,166,.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,45,166,.15);
  padding-top: 1rem;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(230,230,230,.45);
  text-align: center;
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ----------------------------------------------------------
   15. SCROLLBAR (Webkit)
   ---------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent2); }

/* ----------------------------------------------------------
   16. SELECTION
   ---------------------------------------------------------- */
::selection {
  background: var(--accent);
  color: #fff;
}

/* ----------------------------------------------------------
   17. RESPONSIVE — 640px breakpoint
   ---------------------------------------------------------- */
@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }

  .header-main { flex-wrap: nowrap; }

  .main-nav { justify-content: flex-start; }

  .banner-inner { flex-wrap: nowrap; padding-block: 2.5rem; }

  .banner-headline { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

  .cards-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 2rem; }
  .footer-info { flex: 1 1 320px; }
  .footer-links { align-self: flex-start; }
  .footer-bottom { width: 100%; }
}

/* ----------------------------------------------------------
   18. RESPONSIVE — 1024px breakpoint
   ---------------------------------------------------------- */
@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }

  .header-main { gap: 2rem; }

  .main-nav a { font-size: .9rem; padding: .45rem .85rem; }

  .nav-cta { margin-left: 0; }

  .banner-inner { padding-block: 3rem; }

  .banner-headline { font-size: 2.6rem; }

  .cards-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .faq-question { font-size: 1rem; }

  .intro-section, .bonuses-section, .games-section,
  .payments-section, .mobile-section, .faq-section, .cards-section {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer-logo { flex-shrink: 0; }
  .footer-info { flex: 1; }
  .footer-links { flex-shrink: 0; flex-direction: column; gap: .5rem; }
}

/* ----------------------------------------------------------
   19. RESPONSIVE — 1280px breakpoint
   ---------------------------------------------------------- */
@media (min-width: 1280px) {
  .cards-grid { gap: 2rem; }

  .banner-headline { font-size: 2.8rem; }
}

/* ----------------------------------------------------------
   20. ACCESSIBILITY — reduced motion
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}
