
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788862229/ru-la-casino/style.css --- */
/* ============================================================
   Ля Casino — Brand Stylesheet 2026
   ============================================================ */

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES (Brand Book Palette)
   ---------------------------------------------------------- */
: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.25);
  --glow-strong: 0 0 40px rgba(255, 45, 166, 0.40);
}

/* ----------------------------------------------------------
   2. 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;
  min-height: 100vh;
}

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

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

ul { list-style: none; }

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

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

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

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

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

/* ----------------------------------------------------------
   5. AGE STRIP
   ---------------------------------------------------------- */
.age-strip {
  background-color: var(--deep);
  border-bottom: 1px solid var(--accent);
  text-align: left;
  padding: 0.35rem 1rem;
}

.age-strip span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent2);
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .age-strip { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .age-strip { padding-inline: calc((100% - var(--container)) / 2 + 2rem); }
}

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

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

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

.logo-lya {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  /* Silver-to-white gradient on the letterforms */
  background: linear-gradient(160deg, #C0C0C0 0%, #F8F8F8 45%, #FFFFFF 70%, #D0D0D0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 4px rgba(255,255,255,0.15));
}

.logo-star {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  font-style: normal;
  font-size: 0.75em;
  margin-inline: 0.08em;
  filter: drop-shadow(0 0 6px var(--accent));
  text-shadow: none;
}

.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.04em;
  /* Double underline swash */
  text-decoration: underline double var(--accent);
  text-underline-offset: 3px;
  -webkit-text-fill-color: var(--accent);
}

/* ------ NAV ------ */
.main-nav { flex: 1; }

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: center;
}

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

.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;
}

@media (min-width: 640px) {
  .main-nav ul { gap: 0.25rem 1.5rem; }
}
@media (min-width: 1024px) {
  .main-nav ul { justify-content: flex-start; }
  .main-nav a { font-size: 1rem; }
}

/* ------ NAV CTA BUTTON ------ */
.nav-cta {
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   7. BUTTONS (Brand Book: solid fill, uppercase Bebas-stack)
   ---------------------------------------------------------- */
.btn-cta {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--glow);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-cta:hover {
  background-color: var(--accent2);
  border-color: var(--accent2);
  box-shadow: var(--glow-strong);
  transform: translateY(-1px);
}

.btn-cta:active { transform: translateY(0); }

.btn-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-large {
  font-size: 1.15rem;
  padding: 0.85rem 2.2rem;
}

/* ----------------------------------------------------------
   8. BONUS BANNER (full-bleed strip)
   ---------------------------------------------------------- */
.bonus-banner {
  background-color: var(--deep);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  position: relative;
  box-shadow: var(--glow);
}

.banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.banner-text { flex: 1; }

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

.banner-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.banner-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0;
  opacity: 0.85;
}

.banner-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, transparent 100%);
  width: 100%;
}

@media (min-width: 640px) {
  .banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ----------------------------------------------------------
   9. MAIN CONTENT AREA
   ---------------------------------------------------------- */
.main-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* ----------------------------------------------------------
   10. SECTION BLOCKS
   ---------------------------------------------------------- */
.section-block {
  margin-bottom: 3rem;
}

.section-block h2 {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}

.section-block h3 {
  color: var(--accent2);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

/* ----------------------------------------------------------
   11. INTRO SECTION
   ---------------------------------------------------------- */
.intro-section {
  margin-bottom: 3rem;
}

.intro-section h1 {
  color: var(--ink);
  margin-bottom: 1rem;
  text-shadow: 0 0 32px rgba(255, 45, 166, 0.3);
}

/* ----------------------------------------------------------
   12. INFO CARDS (two-column grid)
   ---------------------------------------------------------- */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.info-card {
  background-color: var(--base);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--glow);
  position: relative;
  /* Thick accent top bar */
  border-top: 4px solid var(--accent);
}

.info-card h3 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-card p {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

/* Four-card grid in cards-section */
#cards-section .info-cards {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  #cards-section .info-cards { grid-template-columns: 1fr 1fr; }
}

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

/* ----------------------------------------------------------
   13. PAYMENTS TABLE
   ---------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  box-shadow: var(--glow);
}

table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background-color: var(--base);
  font-size: 0.9rem;
}

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

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

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

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

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

tbody td {
  padding: 0.7rem 1rem;
  color: var(--ink);
  vertical-align: middle;
  white-space: nowrap;
}

/* ----------------------------------------------------------
   14. FAQ ACCORDION (CSS-only hidden-checkbox technique)
   ---------------------------------------------------------- */
.faq-accordion {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

/* Hide the checkbox */
.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;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease;
  user-select: none;
}

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

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

/* Plus/minus icon drawn in CSS */
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}

/* Vertical bar (becomes hidden when open) */
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--accent);
  transform: translateX(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.faq-toggle:checked + .faq-question .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

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

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

.faq-answer p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
  padding: 0;
}

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

/* ----------------------------------------------------------
   15. OUTRO / CTA SECTION
   ---------------------------------------------------------- */
.outro-section { }

.outro-cta {
  margin-top: 2rem;
  text-align: center;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

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

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }
.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: var(--glow);
}

.footer-age p {
  font-size: 0.8rem;
  color: rgba(230, 230, 230, 0.5);
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto auto;
    align-items: start;
  }
}

/* ----------------------------------------------------------
   17. RESPONSIVE REFINEMENTS
   ---------------------------------------------------------- */
@media (min-width: 640px) {
  .main-content { padding-top: 3rem; padding-bottom: 3rem; }
  .section-block { margin-bottom: 3.5rem; }
}

@media (min-width: 1024px) {
  .main-content { padding-top: 4rem; padding-bottom: 4rem; }
  .section-block { margin-bottom: 4rem; }
  .banner-inner { gap: 2rem; }
  .banner-headline { font-size: 2.6rem; }
  .header-inner { flex-wrap: nowrap; }
  .info-cards { gap: 1.5rem; }
}

/* ----------------------------------------------------------
   18. ACCESSIBILITY — FOCUS VISIBLE GLOBAL FALLBACK
   ---------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Visually hide checkboxes in a way that keeps them focusable */
.faq-toggle {
  position: absolute;
  clip: rect(0,0,0,0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* ----------------------------------------------------------
   19. SCROLLBAR STYLING (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); }
