/* Energy Casino review site — shared stylesheet */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1c1c1c;
  --bg-input: #242424;
  --border: #2a2a2a;
  --border-light: #3a3a3a;
  --yellow: #ffd60a;
  --yellow-hover: #ffe33a;
  --yellow-dark: #d4ad00;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --text-dim: #808080;
  --purple: #5b2cb8;
  --purple-deep: #3a1a78;
  --green: #2ecc71;
  --red: #e74c3c;
  --orange: #ff9500;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-yellow: 0 4px 18px rgba(255, 214, 10, 0.28);
  --max-width: 1200px;
  --header-height: 68px;
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(91, 44, 184, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(255, 214, 10, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: var(--yellow); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--yellow-hover); text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.site-header {
  background: #000;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
}
.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover {
  background: rgba(255, 214, 10, 0.1);
  color: var(--yellow);
  text-decoration: none;
}
.main-nav a.active {
  color: var(--yellow);
}
.header-cta {
  background: var(--yellow);
  color: #000;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.2s, background 0.15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 0 var(--yellow-dark);
}
.header-cta:hover {
  background: var(--yellow-hover);
  text-decoration: none;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 214, 10, 0.4);
}

/* ========== MOBILE DRAWER ========== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #0d0d0d;
  border-right: 1px solid var(--border);
  z-index: 201;
  transition: left 0.25s ease;
  overflow-y: auto;
  padding: 20px 0;
}
.mobile-drawer.open { left: 0; }
.drawer-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  padding: 0 20px 16px;
  width: 100%;
  text-align: left;
}
.mobile-drawer nav { display: flex; flex-direction: column; }
.mobile-drawer nav a {
  color: var(--text);
  padding: 14px 24px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer nav a:hover {
  background: rgba(255, 214, 10, 0.07);
  color: var(--yellow);
  text-decoration: none;
}
.drawer-cta {
  margin: 24px 24px 0;
  display: block;
  text-align: center;
}

/* ========== HERO ========== */
.hero {
  padding: 60px 0 50px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--yellow); }
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 540px;
}
.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-meta-item strong { color: var(--text); font-weight: 700; }
.hero-meta-item .check { color: var(--green); font-weight: 700; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 1376 / 689;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 3px 0 var(--yellow-dark);
}
.btn-primary:hover {
  background: var(--yellow-hover);
  color: #000;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 214, 10, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-secondary:hover {
  background: var(--yellow);
  color: #000;
  text-decoration: none;
}
.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ========== SECTIONS ========== */
section { padding: 50px 0; }
section h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
section h2 .accent { color: var(--yellow); }
section h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  margin: 32px 0 14px;
}
section h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
}
section p { margin-bottom: 14px; color: #d8d8d8; }
section p strong { color: var(--text); font-weight: 700; }
section ul, section ol { margin: 14px 0 18px 22px; color: #d8d8d8; }
section li { margin-bottom: 8px; }
.section-intro { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; max-width: 780px; }

/* ========== VERDICT BOX ========== */
.verdict-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.verdict-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--purple) 100%);
}
.verdict-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.rating-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0%, var(--yellow-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  flex-shrink: 0;
}
.rating-circle .score { font-size: 32px; line-height: 1; }
.rating-circle .max { font-size: 13px; opacity: 0.7; margin-top: 2px; }
.rating-circle .stars { font-size: 11px; letter-spacing: 1px; margin-top: 4px; }
.verdict-content h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.verdict-content p {
  margin: 0;
  color: var(--text-muted);
}
.verdict-cta { flex-shrink: 0; }

/* ========== PROS & CONS ========== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 30px 0;
}
.pros, .cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pros { border-left: 4px solid var(--green); }
.cons { border-left: 4px solid var(--orange); }
.pros h4, .cons h4 { margin-top: 0; font-size: 17px; }
.pros ul, .cons ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.pros li, .cons li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: #d8d8d8;
  font-size: 15px;
  border-bottom: 1px dashed var(--border);
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
}
.cons li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 18px;
  top: 4px;
}

/* ========== CALLOUT / INFO BOX ========== */
.callout {
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.07) 0%, rgba(91, 44, 184, 0.07) 100%);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 26px 0;
}
.callout strong { color: var(--yellow); }

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 22px 0;
}
.info-box h4 { margin-top: 0; }

/* ========== TABLE ========== */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--border); }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 15px;
}
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
th {
  background: #181818;
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255, 214, 10, 0.03); }

/* ========== STEP LIST ========== */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 26px 0;
  padding: 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 22px 18px 70px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color 0.2s, transform 0.15s;
}
.steps li:hover {
  border-color: var(--yellow-dark);
  transform: translateX(2px);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 214, 10, 0.3);
}
.steps li strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 16px;
}
.steps li span {
  color: var(--text-muted);
  font-size: 15px;
  display: block;
}

/* ========== FIGURES (IMAGES) ========== */
figure {
  margin: 28px 0;
  text-align: center;
}
figure img {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 12px;
  color: #fff;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 22px;
  font-size: 17px;
  position: relative;
}

/* ========== FAQ ========== */
.faq { margin: 30px 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 50px;
  color: var(--text);
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #1f1f1f; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  padding: 0 24px 22px;
  color: #d8d8d8;
  font-size: 15px;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  padding: 20px 0 0;
  font-size: 14px;
  color: var(--text-dim);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs span { margin: 0 8px; color: var(--text-dim); }
.breadcrumbs .current { color: var(--text); }

/* ========== STAT CARDS ========== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.stat-card:hover { border-color: var(--yellow-dark); transform: translateY(-3px); }
.stat-card .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== PROVIDER BADGES ========== */
.provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.provider-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 50px 0 25px;
  margin-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 36px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--yellow);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--yellow); text-decoration: none; }
.footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.responsible-badge {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer-bottom p { margin: 6px 0; color: var(--text-dim); }
.affiliate-disclaimer {
  font-size: 12px;
  font-style: italic;
  margin-top: 10px;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-large { margin-top: 50px; }
.divider { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

/* ========== MOBILE ========== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .verdict-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .verdict-cta { width: 100%; }
  .verdict-cta .btn { width: 100%; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .header-inner { gap: 14px; }
  figure img { width: 100%; }
  .cta-section { padding: 30px 22px; }
}

@media (max-width: 560px) {
  .hero { padding: 40px 0 30px; }
  .hero-meta { flex-direction: column; gap: 10px; padding: 14px 16px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .verdict-box { padding: 22px 18px; }
  .rating-circle { width: 90px; height: 90px; }
  .rating-circle .score { font-size: 26px; }
  section { padding: 35px 0; }
  table { font-size: 14px; }
  th, td { padding: 10px 12px; }
  .steps li { padding: 14px 16px 14px 60px; }
  .steps li::before { left: 12px; width: 34px; height: 34px; font-size: 15px; }
  .header-cta { padding: 8px 14px; font-size: 12px; }
  .logo img { height: 30px; }
  .container { padding: 0 16px; }
}
