
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788860869/ru-lacasino/style.css --- */
/* ============================================================
   Ля Casino — stylesheet
   Brand book: dark black + deep purple + neon pink
   ============================================================ */

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

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

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

/* ----------------------------------------------------------
   1. 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 { 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; padding: 0; }
ul li { position: relative; padding-left: 1.4em; }
ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75em;
  line-height: 1.9;
}

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

h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 0.6rem; color: var(--accent2); }

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

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

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

/* ----------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.75em 1.75em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

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

/* solid accent */
.btn-accent {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 45, 166, 0.45);
}
.btn-accent:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 30px rgba(255, 45, 166, 0.7);
  transform: translateY(-1px);
  color: #ffffff;
}

/* large accent */
.btn-lg {
  font-size: 1.2rem;
  padding: 0.85em 2.5em;
}

/* outlined CTA in header */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(255, 45, 166, 0.25);
}
.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(255, 45, 166, 0.6);
  transform: translateY(-1px);
}

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

/* ЛЯ — condensed italic uppercase with silver-to-white gradient */
.logo-ly {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(160deg, #C0C0C0 0%, #ffffff 60%, #E6E6E6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}

/* Pink star between Л and Я */
.logo-star {
  display: inline-block;
  font-style: normal;
  font-size: 0.7em;
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  margin-inline: 0.05em;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px rgba(255, 45, 166, 0.8));
}

/* Casino — cursive script style in solid #FF2DA6 with double underline */
.logo-casino {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-decoration: underline double var(--accent);
  text-underline-offset: 2px;
  line-height: 1.3;
}

/* ----------------------------------------------------------
   6. Site Header
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--base);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 0 20px rgba(255, 45, 166, 0.15);
}

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

.main-nav {
  display: none;
  gap: 1.5rem;
  margin-left: auto;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--accent); }

.header-inner .btn-outline {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 0.6em 1.3em;
}

/* ----------------------------------------------------------
   7. Bonus Banner
   ---------------------------------------------------------- */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, #2a0928 50%, var(--deep) 100%);
  border-bottom: 1px solid var(--accent);
  border-top: 1px solid var(--accent);
  box-shadow: 0 0 40px rgba(255, 45, 166, 0.2) inset;
  padding-block: 2.5rem;
}

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

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

.banner-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0;
}

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

/* ----------------------------------------------------------
   8. Intro Section
   ---------------------------------------------------------- */
.intro-section {
  padding-block: 3rem 2rem;
}

.intro-lead {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

/* ----------------------------------------------------------
   9. Content Sections (shared)
   ---------------------------------------------------------- */
.impressions-section,
.games-section,
.bonuses-section,
.payments-section,
.responsible-section {
  padding-block: 2.5rem;
}

.games-section,
.bonuses-section {
  background-color: var(--deep);
  border-top: 1px solid rgba(255, 45, 166, 0.18);
  border-bottom: 1px solid rgba(255, 45, 166, 0.18);
}

/* Alternate section subtle tint */
.impressions-section,
.payments-section,
.responsible-section {
  background-color: var(--base);
}

/* ----------------------------------------------------------
   10. Payments Table
   ---------------------------------------------------------- */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  box-shadow: 0 0 20px rgba(255, 45, 166, 0.1);
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

thead tr {
  background-color: var(--deep);
}

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

tbody tr {
  border-bottom: 1px solid rgba(255, 45, 166, 0.15);
}
tbody tr:last-child { border-bottom: none; }

tbody td {
  padding: 0.75rem 1rem;
  color: var(--ink);
  vertical-align: top;
}

tbody tr:hover {
  background-color: rgba(255, 45, 166, 0.05);
}

/* ----------------------------------------------------------
   11. FAQ Accordion (CSS-only hidden checkbox)
   ---------------------------------------------------------- */
.faq-section {
  padding-block: 2.5rem;
  background-color: var(--deep);
  border-top: 1px solid rgba(255, 45, 166, 0.18);
  border-bottom: 1px solid rgba(255, 45, 166, 0.18);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--base);
  box-shadow: 0 0 10px rgba(255, 45, 166, 0.07);
}

/* Hide the checkbox but keep it accessible */
.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

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

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

/* Plus / minus sign drawn in CSS */
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background: var(--accent);
  transition: opacity 0.25s;
}

/* Vertical bar (plus state) */
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: var(--accent);
  transition: transform 0.25s, opacity 0.25s;
}

/* Checked state: minus — collapse vertical bar */
.faq-toggle:checked ~ .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-toggle:checked ~ .faq-question {
  color: var(--accent);
  background-color: rgba(255, 45, 166, 0.06);
  border-bottom: 1px solid rgba(255, 45, 166, 0.3);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding-inline: 1.25rem;
}

.faq-answer p {
  color: var(--ink);
  font-size: 0.95rem;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
  padding-block: 1rem;
}

/* Focus style for the label */
.faq-toggle:focus-visible ~ .faq-question {
  outline: 2px solid var(--accent2);
  outline-offset: -2px;
}

/* ----------------------------------------------------------
   12. Cards Grid
   ---------------------------------------------------------- */
.cards-section {
  padding-block: 2.5rem;
  background-color: var(--base);
}

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

.card {
  position: relative;
  background-color: var(--base);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 0 24px rgba(255, 45, 166, 0.12);
  transition: box-shadow 0.25s, transform 0.2s;
  overflow: visible;
}

.card:hover {
  box-shadow: 0 0 40px rgba(255, 45, 166, 0.28);
  transform: translateY(-3px);
}

/* Circled numeral */
.card-num {
  position: absolute;
  top: -14px;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 12px rgba(255, 45, 166, 0.5);
  line-height: 1;
}

.card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
  color: var(--accent2);
}

.card p {
  font-size: 0.93rem;
  color: var(--ink);
}

/* ----------------------------------------------------------
   13. Footer
   ---------------------------------------------------------- */
.site-footer {
  background-color: var(--base);
  border-top: 1px solid var(--accent);
  padding-block: 2.5rem 1.5rem;
  box-shadow: 0 -4px 30px rgba(255, 45, 166, 0.08);
}

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

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

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

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.footer-nav a:hover { color: var(--accent); }

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(230, 230, 230, 0.45);
  max-width: 720px;
}

.footer-disclaimer p { margin-bottom: 0.5rem; }
.footer-copy { color: rgba(230, 230, 230, 0.3); }

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

  .header-inner .btn-outline { margin-left: 0; }

  .main-nav {
    display: flex;
    margin-left: auto;
  }

  .header-inner .btn-outline { margin-left: 0; }

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

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-logo { flex: 0 0 auto; }
  .footer-nav  { flex: 1 1 200px; }
  .footer-disclaimer { flex: 1 1 100%; }

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

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

  .header-inner { gap: 2rem; }

  .main-nav { gap: 2rem; }

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

  .intro-section   { padding-block: 4rem 3rem; }
  .impressions-section,
  .games-section,
  .bonuses-section,
  .payments-section,
  .responsible-section,
  .faq-section,
  .cards-section { padding-block: 4rem; }

  .bonus-banner { padding-block: 5rem; }
  .banner-headline { font-size: 3rem; }

  .footer-inner { flex-wrap: nowrap; gap: 3rem; align-items: flex-start; }
  .footer-disclaimer { flex: 0 0 auto; max-width: 480px; }
}

/* ----------------------------------------------------------
   16. Utility / Accessibility
   ---------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Scrollbar theming (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); }
