
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788861805/la-casino-ru2/style.css --- */
/* ============================================================
   Ля Casino — stylesheet
   Brand book palette + system font stacks only
   ============================================================ */

/* ----------------------------------------------------------
   1. 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;

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

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

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

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

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

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

/* ----------------------------------------------------------
   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);
  color: var(--ink);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--ink);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--accent2);
}

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

.lead {
  font-size: 1.125rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

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

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

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

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  padding: 0.65rem 1.4rem;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  line-height: 1.2;
}

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

.btn:active { transform: scale(0.97); }

/* Solid accent */
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-accent:hover {
  background: var(--accent2);
  box-shadow: var(--glow-strong);
  color: #fff;
}

/* Outlined CTA in header */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  box-shadow: var(--glow);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--glow-strong);
}

/* Large variant */
.btn-lg {
  padding: 0.85rem 2.2rem;
  font-size: 1.15rem;
  border-radius: 14px;
}

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

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

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

.logo-lya {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* silver-to-white gradient on letterforms */
  background: linear-gradient(135deg, #C0C0C0 0%, #FFFFFF 55%, #C8C8C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.logo-star {
  /* pink star between ЛЯ */
  -webkit-text-fill-color: var(--accent);
  background: none;
  font-style: normal;
  font-size: 0.7em;
  vertical-align: middle;
  margin: 0 0.05em;
  display: inline-block;
  /* isolate from parent gradient */
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

/* Because logo-lya clips via gradient, we need logo-star to escape it */
.logo .logo-lya .logo-star {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}

.logo-casino {
  font-family: Georgia, "Palatino Linotype", Palatino, serif;
  font-style: italic;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--accent);
  letter-spacing: 0.04em;
  /* double underline swash */
  border-bottom: 2px double var(--accent);
  padding-bottom: 1px;
  margin-top: 1px;
}

/* NAV */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 0.5rem;
}

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

.main-nav a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.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;
}

@media (max-width: 639px) {
  .main-nav { display: none; }
  .header-inner { justify-content: space-between; }
}

/* ----------------------------------------------------------
   7. BONUS BANNERS
   ---------------------------------------------------------- */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, #2D0A2A 50%, var(--deep) 100%);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* pseudo star-motif decoration */
.bonus-banner::before {
  content: "★ ★ ★ ★ ★";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  opacity: 0.18;
  font-size: 1.5rem;
  letter-spacing: 1.2rem;
  pointer-events: none;
  white-space: nowrap;
}

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

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

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

.banner-fine {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.7;
  margin: 0;
}

/* ----------------------------------------------------------
   8. INTRO SECTION
   ---------------------------------------------------------- */
.intro-section {
  padding: 3rem 0 2rem;
}

.intro-section h2 {
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.intro-section h3 {
  margin-top: 1.5rem;
}

/* ----------------------------------------------------------
   9. BONUSES TABLE SECTION
   ---------------------------------------------------------- */
.bonuses-table-section {
  padding: 2rem 0 3rem;
  background: var(--deep);
}

.bonuses-table-section h2 { margin-bottom: 1.25rem; }
.bonuses-table-section h3 { margin-top: 2rem; }

/* ----------------------------------------------------------
   10. GAMES SECTION
   ---------------------------------------------------------- */
.games-section {
  padding: 3rem 0;
}

.games-section h3 { margin-top: 2rem; }

/* ----------------------------------------------------------
   11. PAYMENTS SECTION
   ---------------------------------------------------------- */
.payments-section {
  padding: 3rem 0;
  background: var(--deep);
}

.payments-section h3 { margin-top: 2rem; }

/* ----------------------------------------------------------
   12. SUPPORT SECTION
   ---------------------------------------------------------- */
.support-section {
  padding: 3rem 0;
}

.support-section h3 { margin-top: 2rem; }

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

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

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

thead th {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  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.12);
  transition: background 0.15s;
}

/* Zebra rows */
tbody tr:nth-child(odd) {
  background: rgba(255, 45, 166, 0.04);
}
tbody tr:nth-child(even) {
  background: rgba(31, 7, 29, 0.7);
}

tbody tr:hover {
  background: rgba(255, 45, 166, 0.1);
}

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

/* ----------------------------------------------------------
   14. CARDS GRID
   ---------------------------------------------------------- */
.cards-section {
  padding: 3rem 0;
  background: var(--deep);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

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

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

.card-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 1.15rem;
}

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

/* ----------------------------------------------------------
   15. FAQ ACCORDION (CSS-only via <details>/<summary>)
   ---------------------------------------------------------- */
.faq-section {
  padding: 3rem 0;
}

.faq-section h2 { margin-bottom: 1.5rem; }

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

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

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

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

.faq-item summary:hover {
  background: rgba(255, 45, 166, 0.07);
  color: var(--accent);
}

.faq-item[open] > summary {
  background: rgba(255, 45, 166, 0.1);
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 45, 166, 0.3);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* CSS-only rotating chevron */
.faq-chevron {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  position: relative;
}

.faq-chevron::before {
  content: "";
  display: block;
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-30%);
  transition: transform 0.25s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.35em;
  margin-left: -0.3em;
}

.faq-item[open] .faq-chevron::before {
  transform: rotate(-135deg) translateY(-30%);
  margin-top: -0.15em;
}

.faq-body {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.75;
}

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

/* ----------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--base);
  border-top: 1px solid var(--accent);
  padding: 2.5rem 0 1.5rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  user-select: none;
}

.footer-logo .logo-lya {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #C0C0C0 0%, #FFFFFF 55%, #C8C8C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

.footer-logo .logo-casino {
  font-family: Georgia, "Palatino Linotype", Palatino, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  border-bottom: 2px double var(--accent);
  padding-bottom: 1px;
  margin-top: 2px;
  display: inline-block;
}

.footer-text {
  max-width: 640px;
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.75;
}

.footer-text p { margin-bottom: 0.5rem; }

.footer-age {
  color: var(--accent2);
  opacity: 1 !important;
  font-size: 0.88rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.45;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   17. UTILITY & SECTION SPACING
   ---------------------------------------------------------- */
section + section { /* natural rhythm — sections already have padding */ }

/* Soft divider via border trick for alternating bg sections */
.bonuses-table-section,
.payments-section,
.cards-section {
  border-top: 1px solid rgba(255, 45, 166, 0.15);
  border-bottom: 1px solid rgba(255, 45, 166, 0.15);
}

/* ----------------------------------------------------------
   18. RESPONSIVE OVERRIDES
   ---------------------------------------------------------- */
@media (min-width: 640px) {
  .bonus-banner { padding: 4rem 0; }
  .banner-headline { font-size: 2.4rem; }

  .intro-section,
  .games-section,
  .support-section,
  .faq-section { padding: 4rem 0; }

  .bonuses-table-section,
  .payments-section,
  .cards-section { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .bonus-banner { padding: 5rem 0; }
  .banner-headline { font-size: 3rem; }

  .intro-section,
  .games-section,
  .support-section,
  .faq-section { padding: 5rem 0; }

  .bonuses-table-section,
  .payments-section,
  .cards-section { padding: 5rem 0; }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-logo { align-items: flex-start; }
  .footer-text { text-align: left; }
  .footer-copy { width: 100%; text-align: center; }
}

/* ----------------------------------------------------------
   19. SCROLLBAR (cosmetic, webkit)
   ---------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.6;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent2); }

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