/* ============================================================
   ROOT VARIABLES – neymarcasino.org
   ============================================================ */
:root {
  --bg-primary:    #020610;
  --bg-secondary:  #030815;
  --bg-card:       #08102a;
  --bg-card-alt:   #0c1635;

  --accent:        #3b82f6;
  --accent-dark:   #2563eb;
  --accent-light:  #60a5fa;

  --text:          #eef4ff;
  --text-muted:    #7a9cc4;
  --text-dark:     #3d5a80;

  --border:        #0e1e3a;
  --border-accent: rgba(59,130,246, 0.28);

  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 4px 24px rgba(0,0,0,0.6);

  --font-head:     'Oswald', sans-serif;
  --font-body:     'Open Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(22px, 3.5vw, 36px); text-transform: uppercase; letter-spacing: 0.04em; }
h3 { font-size: clamp(16px, 2vw, 22px); text-transform: uppercase; letter-spacing: 0.03em; color: var(--accent); margin: 22px 0 10px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: filter 0.18s, transform 0.18s;
}
.btn:hover { filter: brightness(1.12); transform: translateY(-2px); }
.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #050505;
  font-weight: 700;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn--lg { padding: 16px 40px; font-size: 18px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(2,6,16, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo__accent { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--accent); background: rgba(59,130,246, 0.08); }
.nav__btn {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #050505;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: filter 0.15s;
}
.nav__btn:hover { filter: brightness(1.1); }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span {
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* MOBILE NAV */
@media (max-width: 860px) {
  .burger { display: flex; }
  .nav {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 16px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 199;
  }
  .nav.is-open { display: flex; }
  .nav__link {
    padding: 14px 16px;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav__btn {
    margin-top: 16px;
    padding: 14px 20px;
    text-align: center;
    font-size: 17px;
  }

  /* Burger animation when open */
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 60px;
  background: linear-gradient(160deg, #030815 0%, #020610 60%);
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero__label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(26px, 4.5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero__title span { color: var(--accent); }
.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero__bonus-badge {
  background: rgba(59,130,246, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.hero__bonus-amount {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.hero__bonus-label {
  font-size: 13px;
  color: var(--text-muted);
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.hero__trust span { display: flex; align-items: center; gap: 5px; }
.hero__image-wrap {
  position: relative;
}
.hero__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 60px rgba(59,130,246, 0.12);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image-wrap { max-width: 420px; margin: 0 auto; }
  .hero__btns .btn { flex: 1 1 auto; text-align: center; }
}

/* ============================================================
   ARTICLE SECTIONS
   ============================================================ */
.art-section {
  padding: 64px 0;
  background: var(--bg-primary);
}
.art-section--alt {
  background: var(--bg-secondary);
}
.art-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.art-section__body h2 { margin-bottom: 20px; }
.art-section__body h3 {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 24px 0 10px;
}
.art-section__body p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.art-section__body ul {
  margin: 14px 0 18px 0;
  padding: 0;
  list-style: none;
}
.art-section__body li {
  padding: 7px 0 7px 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
}
.art-section__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.art-section__body strong { color: var(--text); }
@media (max-width: 700px) {
  .art-section__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; margin: 22px 0; border-radius: var(--radius); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--bg-card);
}
.data-table th {
  background: rgba(59,130,246, 0.1);
  color: var(--text);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
}
.data-table td {
  padding: 12px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(59,130,246, 0.04); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 72px 0;
  background: var(--bg-secondary);
}
.faq-section__head {
  text-align: center;
  margin-bottom: 40px;
}
.faq-section__head h2 { margin-bottom: 10px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--accent); }
.faq-question__title { margin: 0; font: inherit; }
.faq-question__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 18px; line-height: 1;
  transition: background 0.15s;
}
.faq-item.is-open .faq-question__icon { background: var(--accent); color: #050505; }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer__brand .logo { margin-bottom: 12px; }
.footer__desc {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.7;
  max-width: 260px;
}
.footer__links h5 {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer__links a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.footer__warning { max-width: 700px; line-height: 1.6; }
.footer__warning a { color: var(--accent); }
.footer__copy { white-space: nowrap; }

@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.color-accent { color: var(--accent); }
