/* 26betcom.net — Black & Gold theme, responsive layout, full-screen burger menu */

:root {
  --bg: #0b0b0f;
  --bg-elevated: #121218;
  --text: #f3f3f5;
  --muted: #c7c7cc;
  --gold: #d4af37;
  --gold-2: #b8962f;
  --accent: #ffd66b;
  --error: #ff6b6b;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 15, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  color: var(--text);
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--accent);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--bg);
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.btn.outline {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.btn.outline:hover {
  background: rgba(212, 175, 55, 0.12);
}

/* Burger */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  background: transparent;
  position: relative;
}

.burger .line {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger .line:nth-child(1) { top: 12px; }
.burger .line:nth-child(2) { top: 19px; }
.burger .line:nth-child(3) { top: 26px; }

/* Fullscreen menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(6px);
  color: var(--text);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  z-index: 100;
}

.menu-overlay.open {
  transform: translateY(0);
}

.menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 24px;
  text-align: center;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-links a {
  font-size: 20px;
  color: var(--text);
}

.menu-links a:hover {
  color: var(--accent);
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: transparent;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.menu-close::before { transform: rotate(45deg); }
.menu-close::after { transform: rotate(-45deg); }

.scroll-lock {
  overflow: hidden;
}

/* Hero */
.hero {
  padding: 56px 0 32px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

h1 {
  margin: 10px 0 12px;
  font-size: 34px;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 16px;
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sections */
section.section {
  padding: 36px 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 26px;
}

h3 {
  margin: 18px 0 10px;
  color: var(--accent);
  font-size: 20px;
}

ul.list {
  margin: 8px 0 0 0;
  padding-left: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 14px;
  padding: 16px;
}

.muted {
  color: var(--muted);
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-item .q {
  color: var(--accent);
  font-weight: 700;
}

/* Footer */
footer.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background: #0a0a0d;
  padding: 28px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.copyright {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: inline-block; }

  /* Reflow header into grid: logo (top-left), CTAs (top-right), burger (below logo) */
  .nav-bar {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px 12px;
    height: auto;
    padding: 8px;
  }
  .primary-nav { display: contents; }
  .brand { grid-column: 1; grid-row: 1; }
  .cta-desktop { grid-column: 2; grid-row: 1; justify-self: end; display: flex; }
  #burger.burger { grid-column: 1; grid-row: 2; justify-self: start; }
}

@media (max-width: 640px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .card-grid { grid-template-columns: 1fr; }
}

/* Tables */
.table-wrap {
  overflow: auto;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
  background: var(--bg-elevated);
  margin-bottom: 20px;
}

table.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

table.table thead th {
  text-align: left;
  padding: 12px 14px;
  color: var(--bg);
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  font-weight: 800;
}

table.table tbody td {
  padding: 12px 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

table.table tbody tr:nth-child(even) td {
  background: rgba(212, 175, 55, 0.05);
}

.spaced-top { margin-top: 14px; }


