/* ============================================
   CASINO ARENA — Dark Neon Theme
   ============================================ */

:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --red: #ff0033;
  --red-hover: #ff1a4d;
  --red-dark: #cc0029;
  --green: #00ff88;
  --gold: #ffd700;
  --white: #ffffff;
  --text: #e0e0e0;
  --text-muted: #888;
  --border: rgba(255,0,51,0.2);
  --border-hover: rgba(255,0,51,0.6);
  --glow: 0 0 20px rgba(255,0,51,0.3);
  --glow-strong: 0 0 30px rgba(255,0,51,0.5);
  --radius: 8px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { font-size:16px; scroll-behavior:smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

/* ============================================
   MEGA MENU NAVIGATION
   ============================================ */
.nav {
  background: rgba(10,10,15,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Main nav links */
.nav-menu {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
  align-items: center;
}
.nav-menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-menu > li > a {
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: color 0.2s;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
  color: var(--red);
}
.nav-menu > li > a .arrow-down {
  font-size: 0.6rem;
  transition: transform 0.2s;
}
.nav-menu > li:hover > a .arrow-down {
  transform: rotate(180deg);
}

/* Mega dropdown */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12,12,20,0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px 25px;
  min-width: 220px;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.nav-menu > li:hover > .mega-dropdown {
  display: block;
}
.mega-dropdown-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 700;
}
.mega-dropdown ul {
  list-style: none;
}
.mega-dropdown li {
  margin-bottom: 2px;
}
.mega-dropdown a {
  display: block;
  padding: 7px 12px;
  color: var(--text);
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.15s;
}
.mega-dropdown a:hover {
  background: rgba(255,0,51,0.1);
  color: var(--red);
  padding-left: 16px;
}

/* Multi-column mega dropdown */
.mega-dropdown-wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}
.mega-dropdown-wide .mega-col {
  min-width: 0;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

@media (max-width:900px) {
  .nav .container { height: auto; padding: 12px 20px; flex-wrap: wrap; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li { height: auto; flex-direction: column; align-items: stretch; }
  .nav-menu > li > a { height: auto; padding: 10px 0; }
  .nav-menu > li:hover > .mega-dropdown { display: none; }
  .mega-dropdown {
    position: static;
    transform: none;
    border: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 10px 15px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    display: none;
    min-width: 0;
  }
  .mega-dropdown-wide {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .nav-menu > li.open > .mega-dropdown { display: block !important; }
  .nav-toggle { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a14 50%, #0a0a0f 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(255,0,51,0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 0 0 40px rgba(255,0,51,0.3);
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}
.hero .btn { font-size: 1rem; padding: 14px 40px; }

@media (max-width:768px) {
  .hero { padding: 50px 20px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.btn:hover {
  background: linear-gradient(135deg, var(--red-hover), var(--red));
  box-shadow: var(--glow);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-large {
  padding: 15px 45px;
  font-size: 1rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 60px 0;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
}
.section-title::after {
  content:'';
  display:block;
  width:60px;
  height:3px;
  background: var(--red);
  margin: 12px auto 0;
  box-shadow: var(--glow);
}

/* ============================================
   CASINO TOP CARDS
   ============================================ */
.casino-tops {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-card {
  display: grid;
  grid-template-columns: 160px 1fr 280px;
  background: linear-gradient(135deg, #fdf8e8, #f5f0d8);
  border-radius: 10px;
  border-left: 5px solid var(--gold);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.top-card:hover {
  box-shadow: 0 8px 30px rgba(255,215,0,0.15);
  transform: translateY(-2px);
}

/* Left — logo + rank + rating */
.top-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  gap: 10px;
  position: relative;
  background: rgba(255,255,255,0.3);
}
.top-card-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-card-logo {
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.top-card-rating {
  font-size: 0.8rem;
  color: #333;
  font-weight: 600;
}
.top-card-rating .stars {
  color: var(--gold);
  font-size: 0.9rem;
}
.top-card-payment {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #555;
  font-weight: 600;
  margin-top: 2px;
}
.top-card-payment svg {
  width: 16px;
  height: 16px;
  fill: #555;
}

/* Center — features */
.top-card-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 25px;
  gap: 6px;
}
.top-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #333;
  line-height: 1.4;
}
.top-card-feature .check {
  color: #2e7d32;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.top-card-feature a {
  color: #2e7d32;
  font-weight: 600;
}
.top-card-feature a:hover {
  text-decoration: underline;
}

/* Right — bonus + CTA */
.top-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  gap: 15px;
  text-align: center;
}
.top-card-bonus {
  font-size: 1.15rem;
  font-weight: 800;
  color: #c62828;
  line-height: 1.3;
}
.top-card-bonus-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #c62828;
}
.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(76,175,80,0.3);
}
.btn-cta:hover {
  background: linear-gradient(135deg, #66bb6a, #43a047);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,175,80,0.4);
}

/* Stars */
.stars { color: var(--gold); font-size: 0.85rem; }

/* Mobile */
@media (max-width:900px) {
  .top-card {
    grid-template-columns: 1fr;
  }
  .top-card-left {
    flex-direction: row;
    padding: 15px;
    gap: 15px;
    justify-content: flex-start;
  }
  .top-card-rank { top: 6px; left: 6px; }
  .top-card-logo { width: 70px; height: 50px; }
  .top-card-center { padding: 10px 20px; }
  .top-card-right {
    flex-direction: row;
    padding: 15px 20px;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.03);
  }
  .top-card-bonus { font-size: 0.95rem; text-align: left; }
  .btn-cta { padding: 12px 25px; font-size: 0.8rem; }
}
@media (max-width:500px) {
  .top-card-right {
    flex-direction: column;
    align-items: stretch;
  }
  .top-card-bonus { text-align: center; }
  .btn-cta { width: 100%; }
}

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-content {
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.seo-content h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 35px 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.seo-content h2:first-child { margin-top:0; }
.seo-content h3 {
  font-size: 1.1rem;
  color: var(--red);
  margin: 25px 0 10px;
}
.seo-content p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.7;
}
.seo-content ul, .seo-content ol {
  margin: 10px 0 20px 25px;
  color: var(--text);
}
.seo-content li { margin-bottom:8px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,0,51,0.05); }
.faq-q .arrow {
  transition: transform 0.3s;
  color: var(--red);
  font-size: 0.8rem;
}
.faq-q.active .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text);
  line-height: 1.7;
}
.faq-a.active {
  max-height: 500px;
  padding: 0 20px 16px;
}

/* ============================================
   INTERNAL LINKS
   ============================================ */
.related-links {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.related-links h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 15px;
}
.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.link-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,0,51,0.08);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.link-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255,0,51,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(5,5,10,0.95);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.footer ul { list-style:none; }
.footer li { margin-bottom:8px; }
.footer a { color:var(--text-muted); font-size:0.85rem; }
.footer a:hover { color:var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-disclaimer {
  background: rgba(255,0,51,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width:768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap:20px; }
}
@media (max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CASINO REVIEW PAGE — tnbet style
   ============================================ */

/* Review Hero */
.review-hero {
  background: linear-gradient(135deg, #0a0014 0%, #1a0033 40%, #120020 100%);
  padding: 40px 0;
  border-bottom: 2px solid var(--red);
}
.review-hero-inner {
  display: flex;
  align-items: center;
  gap: 35px;
}
.review-hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.review-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.review-hero-info {
  flex: 1;
}
.review-hero-info h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.review-hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.review-hero-rating .stars { font-size: 1.3rem; }
.review-hero-rating .rating-text { color: var(--text-muted); font-size: 0.95rem; }

/* Stat cards (bonus + free spins) */
.review-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255,0,51,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 25px;
  text-align: center;
  min-width: 140px;
}
.stat-card-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.stat-card-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.stat-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width:768px) {
  .review-hero-inner { flex-direction: column; text-align: center; }
  .review-hero-logo { width: 100px; height: 100px; }
  .review-hero-info h1 { font-size: 1.6rem; }
  .review-stats { justify-content: center; }
}

/* Quick Facts Table */
.quick-facts {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 30px 0;
}
.quick-facts-title {
  background: rgba(255,0,51,0.08);
  padding: 12px 20px;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quick-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.quick-fact {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.quick-fact:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.04);
}
.quick-fact-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.quick-fact-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width:600px) {
  .quick-facts-grid { grid-template-columns: 1fr; }
  .quick-fact:nth-child(odd) { border-right: none; }
}

/* Review Sections */
.review-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.review-section:last-child {
  border-bottom: none;
}
.review-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-section-title .icon {
  font-size: 1.3rem;
}
.review-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.review-text strong {
  color: var(--white);
}
.review-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin: 25px 0 12px;
}

/* Bonus Cards */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}
.bonus-card {
  background: rgba(255,0,51,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}
.bonus-card:hover {
  border-color: var(--border-hover);
}
.bonus-card-title {
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-card-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}
.bonus-card-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Game Categories Grid */
.game-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.game-cat {
  text-align: center;
  padding: 18px 8px;
  background: rgba(255,0,51,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
}
.game-cat:hover {
  background: rgba(255,0,51,0.12);
  border-color: var(--red);
  transform: translateY(-2px);
}
.game-cat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.game-cat-name {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Payment / Provider Grids */
.grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.grid-item {
  padding: 14px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 65px;
}
.grid-item:hover {
  border-color: var(--border-hover);
  background: rgba(255,0,51,0.05);
}
.grid-item-icon {
  font-size: 1.4rem;
}
.grid-item-name {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}
.grid-items-count {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.pros-box, .cons-box {
  padding: 25px;
  border-radius: var(--radius);
}
.pros-box {
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.2);
}
.cons-box {
  background: rgba(255,0,51,0.05);
  border: 1px solid rgba(255,0,51,0.2);
}
.pros-box h3 {
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 15px;
}
.cons-box h3 {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 15px;
}
.pros-box ul, .cons-box ul {
  list-style: none;
}
.pros-box li, .cons-box li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.pros-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.cons-box li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

@media (max-width:600px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* Advantages list */
.advantages-list {
  margin: 20px 0;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.advantage-item:last-child { border-bottom: none; }
.advantage-icon {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.advantage-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.advantage-text strong {
  color: var(--white);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,0,51,0.12), rgba(45,0,82,0.25));
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
  margin: 35px 0;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Related Casinos */
.related-casinos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 20px 0;
}
.related-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.related-card-header {
  padding: 20px 15px;
  background: rgba(255,0,51,0.06);
  text-align: center;
}
.related-card-logo {
  width: 60px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 4px;
  overflow: hidden;
}
.related-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related-card-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.related-card-rating {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
}
.related-card-body {
  padding: 15px;
}
.related-card-bonus {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.related-card-btn {
  display: block;
  background: var(--red);
  color: var(--white);
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: background 0.2s;
}
.related-card-btn:hover {
  background: var(--red-hover);
  color: var(--white);
}

/* Review FAQ */
.review-faq {
  margin: 20px 0;
}
.review-faq .faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.review-faq .faq-q {
  padding: 14px 18px;
  background: rgba(255,0,51,0.04);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.review-faq .faq-q:hover { background: rgba(255,0,51,0.08); }
.review-faq .faq-q::after {
  content: "▼";
  color: var(--red);
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.review-faq .faq-item.active .faq-q::after {
  transform: rotate(180deg);
}
.review-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 18px;
}
.review-faq .faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 18px 14px;
}

/* Final Verdict */
.final-verdict {
  background: linear-gradient(135deg, rgba(255,0,51,0.1), rgba(45,0,82,0.2));
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.final-verdict h2 {
  color: var(--red);
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.final-verdict p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
