/* STYLE-23: NEON BRUTALISM */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700;900&family=IBM+Plex+Mono:wght@400;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg: #0D0D0D;
  --gold: #C9A84C;
  --neon: #FFE500;
  --concrete: #2A2A2A;
  --white: #F0F0F0;
  --red: #FF2D2D;
  --border: 3px solid var(--gold);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* SCANLINE OVERLAY */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }
.mono { font-family: 'IBM Plex Mono', monospace; }

/* HEADER */
.site-header {
  background: var(--concrete);
  border-bottom: 4px solid var(--gold);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0; z-index: 100;
}
.site-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--neon);
  text-decoration: none;
  letter-spacing: -1px;
}
.site-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--neon); }

/* HERO */
.hero {
  position: relative;
  background: var(--concrete);
  border-bottom: 6px solid var(--gold);
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  transform: skewX(-3deg);
  transform-origin: left;
  text-shadow: 8px 8px 0 rgba(201,168,76,0.3);
  border-left: 6px solid var(--neon);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero h1 span { color: var(--neon); }
.hero-desc {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 700px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--neon);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border: none;
  box-shadow: 8px 8px 0 var(--gold);
  transition: all 0.15s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-cta:hover {
  box-shadow: 4px 4px 0 var(--gold);
  transform: translate(4px, 4px);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat-box {
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon);
  display: block;
}
.stat-label { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* SECTIONS */
section { padding: 4rem 0; }
section + section { border-top: 1px solid #222; }

.section-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-top: 0.75rem;
}
.section-intro { color: #ccc; max-width: 720px; margin-bottom: 2.5rem; }

/* CASINO TABLE */
.casino-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: #000;
}
.casino-table-wrap { overflow-x: auto; }
.casino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.casino-table th {
  background: var(--gold);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 0.9rem 1rem;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}
.casino-table th:hover { background: var(--neon); }
.casino-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #333;
  vertical-align: middle;
}
.casino-table tr:hover td { background: rgba(201,168,76,0.06); }
.casino-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--white);
}
.casino-bonus {
  color: var(--neon);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
}
.rating-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rating-dots {
  display: flex;
  gap: 3px;
}
.dot {
  width: 8px; height: 8px;
  background: #444;
  border-radius: 50%;
}
.dot.filled { background: var(--gold); }
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(201,168,76,0.3);
  transition: all 0.15s;
  text-transform: uppercase;
  white-space: nowrap;
}
.cta-btn:hover {
  box-shadow: 2px 2px 0 rgba(201,168,76,0.3);
  transform: translate(2px, 2px);
  background: var(--neon);
}
.badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: #00C896; color: #000; }
.badge-top { background: var(--neon); color: #000; }

/* BONUS CARDS */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.sharp-card {
  background: var(--concrete);
  border: 2px solid #333;
  border-left: 6px solid var(--gold);
  padding: 1.5rem;
  position: relative;
  transition: all 0.2s;
}
.sharp-card:hover {
  border-left-color: var(--neon);
  box-shadow: 8px 8px 0 rgba(201,168,76,0.15);
  transform: translate(-2px, -2px);
}
.sharp-card .card-badge {
  position: absolute;
  top: -1px; right: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
}
.card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.card-bonus-amount {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.6rem;
  color: var(--neon);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.card-details { color: #999; font-size: 0.85rem; margin-bottom: 1rem; }
.card-features { list-style: none; margin-bottom: 1.25rem; }
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #333;
}
.card-features li:last-child { border: none; }
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* BONUS CALCULATOR */
.calc-section { background: var(--concrete); border: 2px solid var(--gold); padding: 2rem; margin-top: 2.5rem; }
.calc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--neon);
  margin-bottom: 1.5rem;
}
.calc-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 1rem; }
.calc-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; color: #aaa; min-width: 160px; }
.calc-input, .calc-select {
  background: #1a1a1a;
  border: 2px solid #555;
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  flex: 1;
  min-width: 150px;
}
.calc-input:focus, .calc-select:focus { border-color: var(--gold); }
.calc-result {
  background: #111;
  border: 2px solid var(--neon);
  padding: 1.5rem;
  margin-top: 1rem;
  font-family: 'IBM Plex Mono', monospace;
}
.calc-result-label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.calc-result-value { font-size: 1.8rem; color: var(--neon); font-weight: 700; }
.calc-result-sub { font-size: 0.8rem; color: #666; margin-top: 0.5rem; }
.calc-btn {
  background: var(--gold);
  border: none;
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 0.8rem 2rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.15s;
  margin-top: 0.5rem;
}
.calc-btn:hover { box-shadow: 2px 2px 0 #000; transform: translate(2px,2px); background: var(--neon); }

/* QUIZ */
.quiz-section { background: var(--concrete); border: 3px solid var(--neon); padding: 2rem; margin-top: 2.5rem; }
.quiz-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 1rem;
}
.quiz-question { font-size: 1rem; margin-bottom: 1.25rem; }
.quiz-options { display: grid; gap: 0.75rem; }
.quiz-opt {
  background: #1a1a1a;
  border: 2px solid #444;
  color: var(--white);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
  transition: all 0.2s;
}
.quiz-opt:hover { border-color: var(--gold); color: var(--neon); }
.quiz-result { display: none; margin-top: 1rem; padding: 1.5rem; background: #111; border-left: 4px solid var(--neon); }
.quiz-result.show { display: block; }

/* INFO BLOCKS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.raw-block {
  background: var(--concrete);
  border-top: 4px solid var(--gold);
  padding: 1.5rem;
}
.raw-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.raw-block p { font-size: 0.9rem; color: #bbb; line-height: 1.6; }

/* FAQ */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid #333;
  padding: 1.25rem 0;
}
.faq-q {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.5rem; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; margin-top: 0.75rem; color: #bbb; font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* TRUST SECTION */
.trust-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--concrete);
  border: 1px solid #333;
  margin: 2rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #bbb;
}
.trust-icon { font-size: 1.3rem; }

/* AUTHOR BOX */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--concrete);
  border: 2px solid #333;
  border-left: 6px solid var(--gold);
  padding: 1.75rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
}
.author-info h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.author-info .author-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.author-info p { font-size: 0.88rem; color: #bbb; }

/* RESPONSIBLE GAMBLING */
.rg-section {
  background: #111;
  border: 2px solid #333;
  padding: 2rem;
  margin-top: 3rem;
}
.rg-section h3 { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; }
.rg-section p { font-size: 0.82rem; color: #777; line-height: 1.6; }
.rg-section a { color: var(--gold); }

/* FOOTER */
.site-footer {
  background: #080808;
  border-top: 4px solid var(--gold);
  padding: 3rem 2rem 2rem;
  text-align: center;
  color: #555;
  font-size: 0.82rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--neon);
  margin-bottom: 1rem;
  display: block;
}
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin: 1rem 0; flex-wrap: wrap; }
.footer-links a { color: #666; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer { max-width: 700px; margin: 1.5rem auto 0; font-size: 0.78rem; color: #444; line-height: 1.5; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header { flex-direction: column; gap: 1rem; }
  .nav-links { gap: 1rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-stats { gap: 1rem; }
  .casino-controls { flex-direction: column; }
  .trust-bar { flex-direction: column; gap: 1rem; }
  .author-box { flex-direction: column; }
  .container { padding: 0 1rem; }
}

/* GLITCH EFFECT */
@keyframes glitch {
  0% { clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%); transform: translate(-2px); }
  20% { clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%); transform: translate(2px); }
  40% { clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%); transform: translate(-1px); }
  60% { clip-path: polygon(0 80%, 100% 80%, 100% 83%, 0 83%); transform: translate(2px); }
  80% { clip-path: polygon(0 95%, 100% 95%, 100% 98%, 0 98%); transform: translate(-2px); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translate(0); }
}
.glitch:hover { animation: glitch 0.4s steps(1) infinite; }

/* NEON GLOW */
.neon-text { color: var(--neon); text-shadow: 0 0 10px rgba(255,229,0,0.5), 0 0 20px rgba(255,229,0,0.2); }
