/* Energy Casino – Shared CSS Variables & Base Styles */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #161616;
  --bg-card: #1e1e1e;
  --bg-card-hover: #252525;
  --accent: #f5c800;
  --accent-dark: #d4a900;
  --accent-glow: rgba(245, 200, 0, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #6b6b6b;
  --border: #2a2a2a;
  --border-accent: rgba(245, 200, 0, 0.3);
  --green: #2ecc71;
  --red: #e74c3c;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 4px 24px rgba(245, 200, 0, 0.2);
  --header-height: 64px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

/* ─── HEADER ─── */
.site-header {
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.header-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
}

.btn-login:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-register {
  background: var(--accent);
  border: none;
  color: #000;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
}

.btn-register:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer.open { display: flex; }

.mobile-drawer a {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
  display: block;
}

.mobile-drawer a:hover { background: var(--bg-card); }

.mobile-drawer .drawer-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer .btn-register,
.mobile-drawer .btn-login {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 16px;
}

/* ─── MAIN CTA BUTTONS ─── */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: all var(--transition);
  text-align: center;
}

.btn-cta-outline:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-content {
  padding: 48px 0 80px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
}

.breadcrumb nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-primary); }

/* ─── HERO VERDICT BOX ─── */
.verdict-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.verdict-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rating-badge {
  background: var(--accent);
  color: #000;
  font-size: 28px;
  font-weight: 900;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.stars {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
}

.verdict-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pros h4, .cons h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }

.pros ul, .cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pros li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.cons li::before { content: "✗ "; color: var(--red); font-weight: 700; }

.pros li, .cons li {
  font-size: 14px;
  color: var(--text-secondary);
}

.verdict-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 160px;
}

.verdict-cta .btn-cta { width: 100%; }

.verdict-cta small {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── SECTION HEADINGS ─── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin: 40px 0 16px;
  line-height: 1.2;
}

h2 .accent { color: var(--accent); }

h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
}

p { margin-bottom: 16px; color: var(--text-secondary); }
p strong { color: var(--text-primary); }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

/* ─── BONUS TABLE ─── */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bonus-table th {
  background: var(--bg-secondary);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.bonus-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.bonus-table td:first-child { color: var(--text-primary); font-weight: 600; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,200,0,0.08), rgba(245,200,0,0.03));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
}

.highlight-box h3 {
  color: var(--accent);
  margin-top: 0;
  font-family: var(--font-display);
}

/* ─── STEPS ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.step-body h4 { color: var(--text-primary); margin-bottom: 4px; font-size: 16px; }
.step-body p { margin-bottom: 0; font-size: 15px; }

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question .faq-icon {
  font-size: 20px;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-answer.open { display: block; }

/* ─── IMAGE ─── */
figure {
  margin: 28px 0;
}

figure img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 640px) {
  figure img { width: 100%; }
}

/* ─── CTA BLOCK ─── */
.cta-block {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,200,0,0.06) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0 0;
}

.cta-block h2 { margin-top: 0; }

.cta-block p {
  font-size: 17px;
  margin-bottom: 24px;
}

.cta-block .btn-cta {
  font-size: 17px;
  padding: 16px 40px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 30px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col li a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-18 {
  background: var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-login,
  .header-actions .btn-register { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .verdict-box { grid-template-columns: 1fr; }
  .verdict-pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
