/* --- Stylesheet: https://like-casino777.com/style.css --- */
/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --base:    #241B4B;
  --deep:    #150F2E;
  --accent:  #F5D547;
  --accent2: #7B6CF6;
  --surface: #F5F4FA;
  --ink:     #181233;
  --muted:   #615A83;

  --radius:  14px;
  --max-w:   1040px;

  --font-head: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

a:hover {
  color: var(--base);
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--base);
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.6rem;  margin-bottom: 0.85rem; margin-top: 2rem; }
h3 { font-size: 1.2rem;  margin-bottom: 0.6rem;  margin-top: 1.5rem; }

p  { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

strong { font-weight: 700; }

/* ============================================================
   LAYOUT CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.65em 1.6em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-accent:hover {
  background: #f8df6a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 213, 71, 0.4);
  color: var(--ink);
}

.btn-accent:focus-visible {
  outline: 3px solid var(--base);
  outline-offset: 3px;
}

.btn-lg,
.btn-large,
.btn-banner {
  font-size: 1.1rem;
  padding: 0.8em 2.2em;
}

.btn-inline {
  font-size: 0.95rem;
  padding: 0.6em 1.4em;
  margin-block: 1rem;
}

.btn-link {
  display: inline-block;
  color: var(--accent2);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid var(--accent2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-link:hover {
  color: var(--base);
  border-color: var(--base);
}

.btn-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--base);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 16px rgba(21, 15, 46, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.75rem;
}

/* Logo wordmark */
.logo {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-like {
  color: var(--accent);
}

.logo-casino {
  color: #fff;
}

.logo:hover .logo-like  { color: #f8df6a; }
.logo:hover .logo-casino { color: #e8e4ff; }

.logo:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Footer logo uses same classes */
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.footer-logo .logo-like   { color: var(--accent); }
.footer-logo .logo-casino { color: #fff; }

/* Nav */
.main-nav {
  flex: 1;
  overflow-x: auto;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.main-nav a {
  display: block;
  color: #d8d3f5;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4em 0.55em;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(245, 213, 71, 0.1);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-cta {
  flex-shrink: 0;
  font-size: 0.88rem;
  padding: 0.5em 1.2em;
}

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 60%, #3a2a7a 100%);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(245, 213, 71, 0.03) 20px,
    rgba(245, 213, 71, 0.03) 40px
  );
  pointer-events: none;
}

.bonus-banner--top {
  border-bottom: 4px solid var(--accent);
}

.bonus-banner--mid {
  border-top: 4px solid var(--accent2);
  border-bottom: 4px solid var(--accent2);
  margin-block: 2rem;
  border-radius: var(--radius);
}

.bonus-banner--inline {
  border-radius: var(--radius);
  margin-block: 2rem;
}

.banner-inner,
.bonus-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

.banner-eyebrow,
.bonus-eyebrow {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin: 0;
}

.banner-headline,
.bonus-headline {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  line-height: 1.2;
}

.banner-fine,
.bonus-fine {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 480px;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  padding-block: 2.5rem;
}

.intro-section,
.content-section {
  margin-bottom: 2.5rem;
}

.page-article {
  max-width: 100%;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap,
.table-scroll,
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--muted);
}

table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 480px;
}

thead tr {
  background: var(--base);
  color: #fff;
}

thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

tbody tr:nth-child(odd) {
  background: #fff;
}

tbody tr:nth-child(even) {
  background: #eeeaf8;
}

tbody tr:hover {
  background: #e0d9f8;
}

td {
  padding: 0.65rem 1rem;
  text-align: left;
  color: var(--ink);
  vertical-align: top;
}

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.bonus-card {
  border: 2px solid var(--muted);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem 1.5rem;
}

.bonus-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--accent2);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* ============================================================
   CARD GRID (info cards)
   ============================================================ */
.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.info-card {
  border: 2px solid var(--muted);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem 1.5rem;
}

.info-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--accent2);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* ============================================================
   FAQ ACCORDION — CSS-only hidden-checkbox technique
   ============================================================ */
.faq-list,
.faq-block,
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--muted);
  margin-top: 1rem;
}

/* hide the actual checkbox */
.faq-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.faq-item {
  border-bottom: 1px solid var(--muted);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  color: var(--base);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
  background: #f0ecff;
  color: var(--accent2);
}

.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

/* handle h3 inside label (official-site.html) */
.faq-question h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
  margin: 0;
  flex: 1;
}

/* plus/minus icon drawn in CSS */
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent2);
  border-radius: 50%;
  display: block;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent2);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* horizontal bar */
.faq-icon::before {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* vertical bar (the "plus" part) */
.faq-icon::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

/* when checked: rotate vertical bar to 0 (becomes minus) */
.faq-toggle:checked + .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-toggle:checked + .faq-question {
  background: var(--base);
  color: var(--accent);
}

.faq-toggle:checked + .faq-question .faq-icon {
  border-color: var(--accent);
}

.faq-toggle:checked + .faq-question .faq-icon::before,
.faq-toggle:checked + .faq-question .faq-icon::after {
  background: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: #f7f5ff;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  padding: 0 1.25rem;
  margin: 0;
}

.faq-answer p:first-child,
.faq-answer ul:first-child,
.faq-answer ol:first-child {
  padding-top: 1rem;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  padding-bottom: 1rem;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 800px;
}

/* ============================================================
   REGISTRATION PAGE - SPECIFIC ELEMENTS
   ============================================================ */
.steps-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.steps-list li {
  margin-bottom: 0.6rem;
}

.reg-doc-list {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.reg-doc-list li {
  margin-bottom: 0.5rem;
}

/* Checklist block (vhod.html) */
.checklist-block {
  background: #fff;
  border: 2px solid var(--muted);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}

.checklist-title {
  font-size: 1.05rem;
  color: var(--accent2);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.security-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.security-checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0;
}

.check-icon {
  color: var(--accent2);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding-block: 2.5rem;
  border-top: 4px solid var(--accent2);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.footer-nav a:hover {
  color: var(--accent);
  background: rgba(245, 213, 71, 0.08);
}

.footer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-disclaimer p {
  margin-bottom: 0.4rem;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* ============================================================
   PAGE-SPECIFIC UTILITIES
   ============================================================ */
.page-h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

/* faq-section inside content-section on igrovye-avtomaty.html
   - it's a div, not the .faq-list already styled, so let's make sure
   the inner .faq-item / .faq-toggle / .faq-question selectors still work */
.faq-section .faq-item {
  border-bottom: 1px solid var(--muted);
}

/* ============================================================
   BREAKPOINT: 640px
   ============================================================ */
@media (min-width: 640px) {
  .banner-headline,
  .bonus-headline {
    font-size: 2rem;
  }

  .bonus-cards {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-inner {
    gap: 1.25rem;
  }

  .main-nav a {
    font-size: 0.88rem;
    padding: 0.45em 0.7em;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-nav {
    flex: 1;
  }

  .footer-disclaimer {
    width: 100%;
  }
}

/* ============================================================
   BREAKPOINT: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }

  .header-inner {
    gap: 2rem;
  }

  .main-nav a {
    font-size: 0.92rem;
    padding: 0.45em 0.8em;
  }

  .banner-headline,
  .bonus-headline {
    font-size: 2.4rem;
  }

  .bonus-banner {
    padding: 3.5rem 2rem;
  }

  .bonus-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    align-items: flex-start;
  }

  .footer-logo {
    width: auto;
    flex-shrink: 0;
  }

  .footer-disclaimer {
    width: auto;
    flex: 2;
  }

  .footer-nav {
    flex: 1;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}
