
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788427471/style.css --- */
/* ============================================================
   Ля Casino — style.css
   Brand-book compliant stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   0. CSS Custom Properties (Brand Palette)
   ---------------------------------------------------------- */
:root {
  --base:    #0B0B0B;
  --deep:    #1F071D;
  --accent:  #FF2DA6;
  --accent2: #FF68BE;
  --surface: #0B0B0B;
  --ink:     #E6E6E6;
  --muted:   #1F071D;

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

  --radius:    16px;
  --radius-sm: 8px;
  --max-w:     1280px;

  --glow: 0 0 24px rgba(255, 45, 166, 0.25);
  --glow-strong: 0 0 40px rgba(255, 45, 166, 0.40);
}

/* ----------------------------------------------------------
   1. Reset & Base
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

ul {
  list-style: none;
}

a {
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   2. Layout Container
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }
}

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

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding-block: 0.75rem;
}

/* ------ Logo ------ */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-lya {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  /* Silver-to-white gradient on the letterforms */
  background: linear-gradient(160deg, #c0c0c0 0%, #ffffff 55%, #c8c8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Fallback */
  color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
}

.logo-star {
  /* Pink five-pointed star between Л and Я */
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  background: none;
  font-style: normal;
  font-size: 0.7em;
  line-height: 1;
  display: inline-block;
  text-shadow: 0 0 8px rgba(255, 45, 166, 0.7);
}

.logo-casino {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(0.85rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  /* Double underline swash */
  text-decoration: underline double var(--accent);
  text-underline-offset: 3px;
  margin-top: 1px;
}

/* ------ Main Nav ------ */
.main-nav {
  display: none;
  margin-inline-start: auto;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--ink);
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (min-width: 640px) {
  .main-nav { display: block; }
}

/* ------ Header CTA button pushed to far right ------ */
.site-header .btn {
  margin-inline-start: auto;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .site-header .btn {
    margin-inline-start: 1.5rem;
  }
}

/* ----------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 0.6em 1.4em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}

.btn:focus-visible {
  outline: 3px solid var(--accent2);
  outline-offset: 3px;
}

/* Solid button — primary brand button */
.btn-solid {
  background-color: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: var(--glow);
}

.btn-solid:hover {
  background-color: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
  box-shadow: var(--glow-strong);
}

/* Outlined button — header CTA */
.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #fff;
  box-shadow: var(--glow);
}

/* Large modifier */
.btn-large {
  font-size: 1.15rem;
  padding: 0.75em 2em;
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------
   5. Bonus Banner
   ---------------------------------------------------------- */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, #2a0727 50%, var(--deep) 100%);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  box-shadow: var(--glow-strong);
  padding-block: 3rem 2.5rem;
  text-align: center;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.banner-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent2);
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(255, 104, 190, 0.5);
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(255, 45, 166, 0.4);
  max-width: 800px;
  margin-bottom: 0;
}

.banner-fine {
  font-size: 0.78rem;
  color: rgba(230, 230, 230, 0.55);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   6. Main Content Area
   ---------------------------------------------------------- */
.main-content {
  padding-block: 2.5rem;
}

/* Sections spacing */
.main-content > section,
.main-content > article {
  margin-bottom: 3rem;
}

.main-content > section:last-child,
.main-content > article:last-child {
  margin-bottom: 0;
}

/* Intro block */
.intro-block h1 {
  color: var(--ink);
}

.intro-block p {
  max-width: 820px;
}

/* ----------------------------------------------------------
   7. Quick Facts / Payments Table
   ---------------------------------------------------------- */
.quick-facts h2,
#payments h2 {
  margin-bottom: 1.25rem;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  box-shadow: var(--glow);
}

.facts-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.facts-table thead tr {
  background: linear-gradient(90deg, var(--deep) 0%, #2e0a2b 100%);
}

.facts-table thead th {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--accent);
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid rgba(255, 45, 166, 0.25);
}

.facts-table thead th:last-child {
  border-right: none;
}

.facts-table tbody tr {
  border-bottom: 1px solid rgba(255, 45, 166, 0.15);
  transition: background-color 0.15s ease;
}

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

.facts-table tbody tr:nth-child(even) {
  background-color: rgba(31, 7, 29, 0.45);
}

.facts-table tbody tr:hover {
  background-color: rgba(255, 45, 166, 0.08);
}

.facts-table td {
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(255, 45, 166, 0.12);
  color: var(--ink);
  vertical-align: top;
}

.facts-table td:last-child {
  border-right: none;
}

/* ----------------------------------------------------------
   8. FAQ Accordion (CSS-only via <details>/<summary>)
   ---------------------------------------------------------- */
#faq h2 {
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--base);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--glow);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: var(--glow-strong);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  user-select: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

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

.faq-question:hover {
  color: var(--accent);
  background-color: rgba(255, 45, 166, 0.06);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius);
}

/* Rotating chevron drawn in CSS */
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-chevron::before {
  left: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-chevron::after {
  right: 1px;
  transform: translateY(-50%) rotate(-45deg);
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255, 45, 166, 0.2);
  padding-top: 1rem;
}

.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   9. Cards Grid
   ---------------------------------------------------------- */
.cards-section {
  margin-bottom: 2rem;
}

.cards-section h2 {
  margin-bottom: 1.75rem;
}

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

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  background: var(--base);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem 1.25rem 1.25rem;
  box-shadow: var(--glow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

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

/* Circled numeral in the corner */
.card-num {
  position: absolute;
  top: -1px;
  right: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 0 var(--radius) 0 var(--radius);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.card h3 {
  font-size: 1.1rem;
  color: var(--accent2);
  margin-bottom: 0.65rem;
  padding-right: 2rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   10. Bonus Banner Mid
   ---------------------------------------------------------- */
.banner-mid {
  /* Inherits .bonus-banner */
}

/* ----------------------------------------------------------
   11. Mobile Section
   ---------------------------------------------------------- */
#mobile h3 {
  color: var(--accent2);
  margin-top: 1.5rem;
}

#mobile h3:first-of-type {
  margin-top: 0;
}

/* ----------------------------------------------------------
   12. Payments Section
   ---------------------------------------------------------- */
#payments h3 {
  color: var(--accent2);
  margin-top: 1.5rem;
}

/* ----------------------------------------------------------
   13. Bonuses / Games Sections
   ---------------------------------------------------------- */
#bonuses h3,
#games h3 {
  color: var(--accent2);
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 45, 166, 0.25);
}

#bonuses h3:first-of-type,
#games h3:first-of-type {
  margin-top: 0;
}

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

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

@media (min-width: 1024px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo .logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink);
  transition: color 0.2s ease;
}

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

.footer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-disclaimer {
  flex: 1;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(230, 230, 230, 0.5);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-copy {
  font-size: 0.78rem !important;
  color: rgba(230, 230, 230, 0.35) !important;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 45, 166, 0.15);
  padding-top: 0.75rem;
}

/* ----------------------------------------------------------
   15. Section h2 — accent underline treatment
   ---------------------------------------------------------- */
.main-content h2,
.main-content h2[id] {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
  margin-bottom: 1.25rem;
}

.main-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3em;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 2px;
}

/* ----------------------------------------------------------
   16. Responsive adjustments — 640px+
   ---------------------------------------------------------- */
@media (min-width: 640px) {
  .bonus-banner {
    padding-block: 4rem 3rem;
  }

  .banner-headline {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .main-content {
    padding-block: 3rem;
  }

  .main-content > section,
  .main-content > article {
    margin-bottom: 4rem;
  }

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

/* ----------------------------------------------------------
   17. Responsive adjustments — 1024px+
   ---------------------------------------------------------- */
@media (min-width: 1024px) {
  .site-header .btn {
    margin-inline-start: 1rem;
  }

  .bonus-banner {
    padding-block: 5rem 3.5rem;
  }

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

  .main-content {
    padding-block: 4rem;
  }

  .main-content > section,
  .main-content > article {
    margin-bottom: 5rem;
  }

  .faq-list {
    gap: 1rem;
  }

  .faq-question {
    padding: 1.1rem 1.5rem;
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    padding-top: 1rem;
  }
}

/* ----------------------------------------------------------
   18. Utility: visually-hidden for accessibility
   ---------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------------------------------------------------------
   19. Scrollbar styling (Chromium)
   ---------------------------------------------------------- */
.table-scroll::-webkit-scrollbar {
  height: 6px;
}

.table-scroll::-webkit-scrollbar-track {
  background: var(--deep);
}

.table-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ----------------------------------------------------------
   20. Selection highlight
   ---------------------------------------------------------- */
::selection {
  background: var(--accent);
  color: #fff;
}
