
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788861885/lacasino-ru2/style.css --- */
/* ============================================================
   Ля Casino — stylesheet
   Brand book: dark black base, deep purple, neon pink CTA,
   silver body text. System font substitutes for Bebas Neue /
   Pacifico. Mobile-first.
   ============================================================ */

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

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

  /* heading stack (Bebas Neue substitute) */
  --ff-head: Impact, "Arial Narrow", Arial, "Helvetica Neue", Helvetica, sans-serif;
  /* body stack (Pacifico / Georgia substitute) */
  --ff-body: Georgia, "Palatino Linotype", Palatino, serif;

  --glow: 0 0 18px rgba(255, 45, 166, 0.35);
  --glow-lg: 0 0 36px rgba(255, 45, 166, 0.25);
}

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

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

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.65;
  -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;
}

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--accent);
  text-shadow: var(--glow);
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
}

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

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

.section {
  padding-block: 3rem;
}

.section--dark {
  background: var(--deep);
}

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

/* utility strip */
.header-top {
  background: var(--deep);
  padding: 0.25rem 1rem;
  text-align: left;
}

.age-notice {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  color: var(--accent2);
  letter-spacing: 0.05em;
}

/* main header row */
.header-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.6rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   6. LOGO
   ---------------------------------------------------------- */
.logo,
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  flex-shrink: 0;
}

.logo-lya {
  font-family: var(--ff-head);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #C0C0C0 0%, #FFFFFF 50%, #C0C0C0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.logo-star {
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  font-style: normal;
  font-size: 0.75em;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
  text-shadow: 0 0 8px var(--accent);
}

/* "Casino" cursive script */
.logo-casino {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

/* double underline swash */
.logo-casino::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-top: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
}

/* ----------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------- */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  flex: 1;
  justify-content: flex-end;
}

.main-nav a {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  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;
}

/* ----------------------------------------------------------
   8. BUTTONS
   ---------------------------------------------------------- */
.btn-header,
.btn-cta {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: var(--glow);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-header:hover,
.btn-cta:hover {
  background: var(--accent2);
  box-shadow: var(--glow-lg);
  transform: translateY(-1px);
}

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

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

.btn-cta {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
}

/* ----------------------------------------------------------
   9. BONUS BANNER
   ---------------------------------------------------------- */
.bonus-banner {
  background: var(--deep);
  position: relative;
  padding-block: 1.5rem;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255, 45, 166, 0.08) 0%,
    transparent 60%);
  pointer-events: none;
}

.bonus-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.bonus-banner__text {
  flex: 1;
}

.bonus-banner__label {
  font-family: var(--ff-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent2);
  margin-bottom: 0.35rem;
}

.bonus-banner__headline {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: clamp(1.2rem, 4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-shadow: var(--glow);
}

.bonus-banner__sub {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--accent2);
  margin-bottom: 0;
}

/* thin accent underline beneath banner */
.bonus-banner__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--accent) 100%);
  box-shadow: var(--glow);
}

/* ----------------------------------------------------------
   10. INTRO / RATING BLOCK
   ---------------------------------------------------------- */
.intro__tagline {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.rating-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.rating-item {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--deep);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  box-shadow: var(--glow);
}

.rating-num {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--accent);
  text-shadow: var(--glow);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.rating-label {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ----------------------------------------------------------
   11. REGISTRATION STEPS
   ---------------------------------------------------------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--deep);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--glow);
  transition: box-shadow 0.2s;
}

.step:hover {
  box-shadow: var(--glow-lg);
}

.step-num {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  text-shadow: var(--glow);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
}

.step-body h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: var(--ink);
  text-transform: uppercase;
}

.step-body p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   12. TABLES
   ---------------------------------------------------------- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 45, 166, 0.25);
}

table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--base);
}

thead tr {
  border-bottom: 2px solid var(--accent);
}

th {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 0.85rem 1rem;
  text-align: left;
  background: var(--deep);
  white-space: nowrap;
}

td {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 45, 166, 0.12);
  vertical-align: middle;
}

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

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

/* ----------------------------------------------------------
   13. CARD GRID
   ---------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

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

.card-num {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(255, 45, 166, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.card h3 {
  font-size: 1rem;
  color: var(--accent2);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0;
}

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

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

/* hide the actual checkbox */
.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

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

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

.faq-label:focus-visible {
  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: var(--accent);
  transform: translateY(-50%);
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 2px;
}

/* vertical bar (visible = +, hidden = −) */
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent);
  transform: translateX(-50%);
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 2px;
}

/* When checked: rotate vertical bar to make minus */
.faq-toggle:checked ~ .faq-label .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-toggle:checked ~ .faq-label {
  color: var(--accent);
  background: rgba(255, 45, 166, 0.1);
}

/* Body: collapsed by default */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-body p {
  font-size: 0.9rem;
  padding: 0 1.25rem;
  margin-bottom: 0;
}

.faq-body p:first-child { padding-top: 0; }
.faq-body p:last-child  { padding-bottom: 1rem; }

/* Open state */
.faq-toggle:checked ~ .faq-body {
  max-height: 600px;
}

.faq-toggle:checked ~ .faq-body p:first-child { padding-top: 0.75rem; }

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

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.footer-info p {
  font-size: 0.8rem;
  color: rgba(230, 230, 230, 0.6);
  margin-bottom: 0.4rem;
}

.footer-warning {
  color: var(--accent2) !important;
  font-weight: 700;
}

.footer-copy {
  font-size: 0.75rem !important;
  color: rgba(230, 230, 230, 0.4) !important;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-nav a {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  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;
}

/* ----------------------------------------------------------
   16. SCROLLBAR (aesthetic touch)
   ---------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent2); }

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

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

  .bonus-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .bonus-banner__headline {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

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

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

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

  .footer-info {
    flex: 1;
  }

  .steps {
    gap: 1rem;
  }

  .rating-block {
    flex-wrap: nowrap;
  }
}

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

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

  .main-nav { flex-wrap: nowrap; }

  .main-nav a { font-size: 0.9rem; }

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

  .bonus-banner__headline {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  }

  .section { padding-block: 4rem; }

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

  .steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

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

  .footer-info {
    max-width: 560px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-end;
    margin-left: auto;
  }
}

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