
/* --- Stylesheet: https://land.indieman.com.ua/wp-content/uploads/li_temp_1788862901/la-casino-ru7/style.css --- */
/* ============================================================
   ЛЯ CASINO — BRAND STYLESHEET 2026
   Mobile-first · System fonts only · CSS-only FAQ accordion
   ============================================================ */

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

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

  /* layout */
  --container: 1280px;
  --radius:    16px;
  --radius-sm: 8px;

  /* glow */
  --glow:      0 0 18px rgba(255, 45, 166, 0.35),
               0 0 40px rgba(255, 45, 166, 0.15);
}

/* ----------------------------------------------------------
   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;
  -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: 3px;
}

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

strong { color: var(--ink); font-weight: 700; }

/* ----------------------------------------------------------
   3. HEADINGS
   ---------------------------------------------------------- */
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: clamp(2rem, 6vw, 3rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--accent2);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--ink);
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

/* ----------------------------------------------------------
   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. LOGO WORDMARK
   ---------------------------------------------------------- */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

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

/* ★ pink star between ЛЯ and Casino */
.logo-star {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  margin: 0 0.18em;
  vertical-align: middle;
  line-height: 1;
  text-shadow: 0 0 8px var(--accent);
}

/* 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: 1.3rem;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  letter-spacing: 0.02em;
  text-decoration: underline double var(--accent);
  text-underline-offset: 3px;
  line-height: 1;
}

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

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

/* nav */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}

.main-nav a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  color: var(--ink);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  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 (min-width: 640px) {
  .main-nav a { font-size: 0.95rem; }
}

/* ----------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------- */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--glow);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  /* inner highlight per brand spec */
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: inherit;
  pointer-events: none;
}

.btn-cta:hover {
  background: var(--accent2);
  box-shadow: 0 0 28px rgba(255, 45, 166, 0.6), 0 0 60px rgba(255, 45, 166, 0.25);
  transform: translateY(-1px);
}

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

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

.btn-cta--large {
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
}

.nav-cta {
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   8. BONUS BANNER
   ---------------------------------------------------------- */
.bonus-banner {
  background: var(--deep);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 1.5rem 0;
  box-shadow: var(--glow);
  position: relative;
}

/* thin accent underline swash below headline */
.bonus-banner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent), transparent);
  opacity: 0.7;
}

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

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.banner-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--accent2);
}

.banner-headline {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: #ffffff;
  font-weight: 900;
  line-height: 1.1;
}

.banner-sub {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.8;
}

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

/* ----------------------------------------------------------
   9. MAIN ARTICLE & SECTIONS
   ---------------------------------------------------------- */
.main-article {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.intro-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 45, 166, 0.2);
}

.intro-section p,
.first-impressions p,
.games-section p,
.bonuses-section p,
.payments-section p,
.responsible-play p,
.support-section p,
.mobile-section p {
  margin-bottom: 1rem;
}

.first-impressions,
.games-section,
.bonuses-section,
.payments-section,
.responsible-play,
.support-section,
.mobile-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 45, 166, 0.15);
}

ol li, ul li {
  color: var(--ink);
}

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

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

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

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

tbody tr {
  border-bottom: 1px solid rgba(255, 45, 166, 0.18);
}

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

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

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

/* ----------------------------------------------------------
   11. SECOND BONUS BANNER (mid)
   ---------------------------------------------------------- */
.bonus-banner--mid {
  margin-top: 0;
}

/* ----------------------------------------------------------
   12. FAQ ACCORDION (CSS-only, checkbox technique)
   ---------------------------------------------------------- */
.faq-section {
  padding: 2.5rem 0;
  background: var(--deep);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glow);
}

.faq-item {
  position: relative;
  background: var(--base);
  border-bottom: 1px solid rgba(255, 45, 166, 0.25);
}

.faq-item:last-child { border-bottom: none; }

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

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

.faq-question:hover {
  background: 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 {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  border: 2px solid var(--accent);
  border-radius: 50%;
  transition: background 0.2s;
}

/* horizontal bar (always present) */
.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* vertical bar (the + part) */
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

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

.faq-answer p {
  padding-bottom: 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

/* open state */
.faq-toggle:checked + .faq-question {
  color: var(--accent);
  background: rgba(255, 45, 166, 0.06);
}

.faq-toggle:checked + .faq-question .faq-icon {
  background: var(--accent);
}

.faq-toggle:checked + .faq-question .faq-icon::before,
.faq-toggle:checked + .faq-question .faq-icon::after {
  background: #ffffff;
}

/* hide vertical bar (minus) */
.faq-toggle:checked + .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

/* ----------------------------------------------------------
   13. CARDS GRID
   ---------------------------------------------------------- */
.cards-section {
  padding: 2.5rem 0;
}

.cards-section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

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

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

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

.card:hover {
  box-shadow: 0 0 32px rgba(255, 45, 166, 0.45),
              0 0 70px rgba(255, 45, 166, 0.2);
  transform: translateY(-2px);
}

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

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

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

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--accent2);
  font-size: 0.9rem;
}

.footer-info p {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.age-warning {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem !important;
  color: var(--accent2) !important;
  opacity: 1 !important;
}

.footer-copy p {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.5;
}

/* footer logo sizing */
.site-footer .logo-ly  { font-size: 1.4rem; }
.site-footer .logo-star { font-size: 0.7rem; }
.site-footer .logo-casino { font-size: 1.05rem; }

/* ----------------------------------------------------------
   15. SCROLLBAR (optional — brand colour)
   ---------------------------------------------------------- */
::-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); }

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

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

/* ----------------------------------------------------------
   18. UTILITY: paragraph spacing inside articles
   ---------------------------------------------------------- */
.main-article p + p { margin-top: 0.75rem; }

/* ----------------------------------------------------------
   19. RESPONSIVE TWEAKS
   ---------------------------------------------------------- */
@media (min-width: 640px) {
  .main-article { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .faq-question { padding: 1.1rem 1.5rem; font-size: 1rem; }
  .faq-answer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .card { padding: 1.75rem; }
}

@media (min-width: 1024px) {
  h2 { margin-top: 3rem; }
  .main-article { padding-top: 3rem; padding-bottom: 3rem; }
  .bonus-banner { padding: 2rem 0; }
  .banner-headline { font-size: 2.2rem; }
  .cards-grid { gap: 1.5rem; }
  .faq-section { padding: 3rem 0; }
  .cards-section { padding: 3rem 0; }
  .card h3 { font-size: 1.05rem; }
}
