
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788427389/style.css --- */
/* ============================================================
   ЛЯ CASINO — Brand Stylesheet 2026
   Mobile-first, CSS-only FAQ accordion, brand-book accurate
   ============================================================ */

/* ----------------------------------------------------------
   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-heading: Impact, "Arial Narrow", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body:    Georgia, "Palatino Linotype", Palatino, serif;

  --glow: 0 0 24px rgba(255, 45, 166, 0.28), 0 0 6px rgba(255, 45, 166, 0.15);
  --glow-sm: 0 0 12px rgba(255, 45, 166, 0.20);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul { list-style: none; }

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

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

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

strong { color: var(--ink); }

/* ----------------------------------------------------------
   3. CONTAINER
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ----------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65em 1.6em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1.2;
}
.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* CTA button — solid accent fill, brand-book */
.btn-cta {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 45, 166, 0.55), 0 4px 12px rgba(255, 45, 166, 0.3);
}
.btn-cta:active { transform: translateY(0); filter: brightness(0.95); }

/* Outlined nav CTA */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: var(--glow-sm);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--glow);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0); }

/* ----------------------------------------------------------
   5. HEADER
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--base);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 2px 16px rgba(255, 45, 166, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  flex-wrap: wrap;
}

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

.logo-ly {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(160deg, #C8C8C8 0%, #ffffff 45%, #A0A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.logo-star {
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--accent);
  background-clip: unset;
  color: var(--accent);
  font-size: 0.8em;
  vertical-align: middle;
  margin: 0 0.05em;
  filter: drop-shadow(0 0 4px var(--accent));
  text-shadow: 0 0 8px var(--accent);
}

.logo-casino {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}
/* Double underline swash */
.logo-casino::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 2px 0 var(--accent);
}

/* NAV */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.4em 0.65em;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.main-nav a:hover {
  color: var(--accent);
  background: rgba(255, 45, 166, 0.08);
}
.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ----------------------------------------------------------
   6. BONUS BANNER
   ---------------------------------------------------------- */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, #2a0828 50%, var(--deep) 100%);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  box-shadow: inset 0 0 60px rgba(255, 45, 166, 0.08);
  padding: 3rem 0;
  text-align: center;
}

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

.banner-eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--accent2);
  margin-bottom: 0;
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 45, 166, 0.4);
  margin-bottom: 0;
}

.banner-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0;
  max-width: 48ch;
}

.banner-fine {
  font-size: 0.75rem;
  color: rgba(230, 230, 230, 0.5);
  margin-bottom: 0;
  font-style: italic;
}

/* ----------------------------------------------------------
   7. MAIN / ARTICLE
   ---------------------------------------------------------- */
.main-article {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Sections inside article */
.intro-section,
.impressions-section,
.games-section,
.bonuses-section,
.payments-section,
.responsible-section {
  margin-bottom: 3rem;
}

.intro-section h1,
.impressions-section h2,
.games-section h2,
.bonuses-section h2,
.payments-section h2,
.responsible-section h2 {
  margin-bottom: 1.1rem;
  color: var(--accent2);
  position: relative;
  padding-bottom: 0.5rem;
}

/* Pink underline accent on section headings */
.intro-section h1::after,
.impressions-section h2::after,
.games-section h2::after,
.bonuses-section h2::after,
.payments-section h2::after,
.responsible-section h2::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.4rem;
  box-shadow: var(--glow-sm);
}

h3 {
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7em;
  top: 0.3em;
}

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

table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.92rem;
}

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

thead th {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent2);
  padding: 0.85em 1em;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--accent);
}

tbody tr:nth-child(odd) {
  background: rgba(31, 7, 29, 0.55);
}
tbody tr:nth-child(even) {
  background: rgba(11, 11, 11, 0.7);
}
tbody tr:hover {
  background: rgba(255, 45, 166, 0.07);
}

tbody td {
  padding: 0.75em 1em;
  text-align: left;
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 45, 166, 0.1);
}
tbody tr:last-child td { border-bottom: none; }

/* ----------------------------------------------------------
   9. FAQ ACCORDION (CSS-only, <details>/<summary>)
   ---------------------------------------------------------- */
.faq-section {
  background: var(--deep);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 3rem 0;
}

.faq-section h2 {
  color: var(--accent2);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.faq-section h2::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.4rem;
  box-shadow: var(--glow-sm);
}

.faq-item {
  border: 1px solid rgba(255, 45, 166, 0.3);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--base);
  overflow: hidden;
  box-shadow: var(--glow-sm);
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding: 1rem 3.5rem 1rem 1.25rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  user-select: none;
  transition: color 0.2s, background 0.2s;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

/* Rotating chevron drawn in CSS */
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform-origin: center 60%;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-item summary:hover {
  color: var(--accent2);
  background: rgba(255, 45, 166, 0.05);
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.faq-item[open] summary {
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 45, 166, 0.25);
}

.faq-body {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.7;
}
.faq-body p { margin-bottom: 0; }

/* ----------------------------------------------------------
   10. CARDS SECTION
   ---------------------------------------------------------- */
.cards-section {
  padding: 3rem 0;
  background: var(--surface);
}

.cards-section h2 {
  color: var(--accent2);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.cards-section h2::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.4rem;
  box-shadow: var(--glow-sm);
}

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

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

/* Circled numeral in corner */
.card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--deep);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  box-shadow: 0 0 10px rgba(255, 45, 166, 0.3);
  line-height: 1;
}

.card h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent2);
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 0.65rem;
  padding-right: 2.8rem;
}

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

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

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

.footer-logo .logo-ly {
  font-size: 1.5rem;
}
.footer-logo .logo-casino {
  font-size: 0.8rem;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(230, 230, 230, 0.65);
  line-height: 1.6;
}
.footer-text p { margin-bottom: 0.5rem; }

.footer-warning {
  color: rgba(230, 230, 230, 0.5);
  font-size: 0.8rem;
}
.footer-warning strong { color: var(--accent2); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.footer-nav a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--ink);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 45, 166, 0.15);
  padding-top: 1rem;
  font-size: 0.78rem;
  color: rgba(230, 230, 230, 0.35);
  font-family: var(--font-body);
}
.footer-bottom p { margin-bottom: 0; }

/* ----------------------------------------------------------
   12. RESPONSIBLE SECTION
   ---------------------------------------------------------- */
.responsible-section ul li::before {
  content: '✔';
  color: var(--accent2);
  font-size: 0.75em;
  top: 0.25em;
}

/* ----------------------------------------------------------
   13. BREAKPOINT: 640px
   ---------------------------------------------------------- */
@media (min-width: 640px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .banner-headline { font-size: 2.5rem; }
  .banner-sub { font-size: 1.05rem; }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .main-nav ul { gap: 0.4rem; }

  .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo  text"
      "nav   text"
      "bottom bottom";
    align-items: start;
    gap: 1.25rem;
  }
  .footer-logo { grid-area: logo; }
  .footer-text  { grid-area: text; }
  .footer-nav   { grid-area: nav; align-self: end; }
  .footer-bottom { grid-area: bottom; }
}

/* ----------------------------------------------------------
   14. BREAKPOINT: 1024px
   ---------------------------------------------------------- */
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bonus-banner { padding: 4rem 0; }

  .faq-section { padding: 4rem 0; }
  .cards-section { padding: 4rem 0; }

  .main-article {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo text nav"
      "bottom bottom bottom";
    gap: 2rem;
  }
  .footer-nav {
    flex-direction: column;
    align-self: start;
    gap: 0.4rem;
  }
}

/* ----------------------------------------------------------
   15. BREAKPOINT: 1280px
   ---------------------------------------------------------- */
@media (min-width: 1280px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ----------------------------------------------------------
   16. FOCUS & ACCESSIBILITY UTILS
   ---------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Scrollbar tinting for webkit */
::-webkit-scrollbar { width: 8px; height: 6px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent2);
}
