    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

    body {
      font-family: 'Inter', Arial, sans-serif;
      line-height: 1.8;
      color: #1a1a2e;
      background: #f0f4f8;
      padding: 0;
    }

    /* Fix anchor scrolling behind fixed header */
    html {
      scroll-padding-top: 90px;
    }

    /* ===== MODERN HERO ===== */
    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1145 25%, #2d1b69 50%, #0f3460 75%, #0a2647 100%);
      background-size: 300% 300%;
      animation: heroGradient 12s ease infinite;
      color: #fff;
      padding: 140px 24px 72px;
      text-align: center;
    }

    @keyframes heroGradient {

      0%,
      100% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      margin: 0 auto;
    }

    .hero-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 40px;
      padding: 6px 18px;
      margin-bottom: 28px;
      font-size: 0.8rem;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.7);
    }

    .hero-breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.2s;
    }

    .hero-breadcrumb a:hover {
      color: #fff;
    }

    .hero-breadcrumb .sep {
      opacity: 0.4;
    }

    .hero-breadcrumb .current {
      color: rgba(255, 255, 255, 0.95);
      font-weight: 500;
    }

    .hero-badge {
      display: inline-block;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
      border: 1px solid rgba(139, 92, 246, 0.35);
      color: #c4b5fd;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 6px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: clamp(1.8rem, 4.5vw, 3rem);
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      max-width: 680px;
      margin: 0 auto 32px;
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.75;
      font-weight: 400;
    }

    .hero-meta {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-meta svg {
      width: 15px;
      height: 15px;
      opacity: 0.6;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      z-index: 1;
    }

    .hero-orb--1 {
      width: 280px;
      height: 280px;
      background: rgba(99, 102, 241, 0.18);
      top: -60px;
      right: -40px;
      animation: orbFloat 8s ease-in-out infinite;
    }

    .hero-orb--2 {
      width: 200px;
      height: 200px;
      background: rgba(236, 72, 153, 0.12);
      bottom: -40px;
      left: -30px;
      animation: orbFloat 10s ease-in-out infinite reverse;
    }

    .hero-orb--3 {
      width: 140px;
      height: 140px;
      background: rgba(59, 130, 246, 0.14);
      top: 40%;
      left: 60%;
      animation: orbFloat 7s ease-in-out infinite 2s;
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-20px) scale(1.08);
      }
    }

    /* ===== CONTAINER & TYPOGRAPHY ===== */
    .container {
      max-width: 860px;
      margin: 0 auto;
      padding: 40px 24px 80px;
    }

    h2 {
      font-size: clamp(1.3rem, 3vw, 1.7rem);
      color: #0f2027;
      margin: 48px 0 16px;
      padding-bottom: 10px;
      border-bottom: 3px solid #add8e6;
    }

    h3 {
      font-size: clamp(1.05rem, 2.5vw, 1.3rem);
      color: #203a43;
      margin: 32px 0 12px;
    }

    h4 {
      font-size: 1.05rem;
      color: #555;
      margin: 24px 0 10px;
      font-style: italic;
    }

    p {
      margin: 0 0 16px;
      font-size: clamp(0.93rem, 1.8vw, 1rem);
    }

    strong {
      color: #0f2027;
    }

    ul,
    ol {
      margin: 0 0 20px 24px;
      font-size: clamp(0.93rem, 1.8vw, 1rem);
    }

    li {
      margin-bottom: 10px;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      padding: 28px 24px;
      margin: 28px 0;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .card h3 {
      margin-top: 0;
    }

    .warning-box {
      background: linear-gradient(135deg, #fff3cd, #fff8e1);
      border-left: 4px solid #ffc107;
      padding: 16px 20px;
      border-radius: 0 8px 8px 0;
      margin: 20px 0;
      font-size: 0.95rem;
    }

    /* --- TABLE STYLES (user-specified + responsive) --- */
    .table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 20px 0 28px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-family: Arial, sans-serif;
      margin-top: 20px;
      min-width: 540px;
    }

    th,
    td {
      border: 2px solid lightblue;
      padding: 15px;
      text-align: left;
      vertical-align: top;
      line-height: 1.5;
      font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    }

    th {
      background-color: #f0f8ff;
      font-weight: bold;
    }

    tr:nth-child(even) {
      background-color: #fafafa;
    }

    /* ===== SECTION IMAGES ===== */
    .section-img {
      width: 100%;
      max-width: 860px;
      aspect-ratio: 16 / 8;
      object-fit: cover;
      border-radius: 12px;
      margin: 24px 0 28px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      display: block;
    }

    /* ===== PROS & CONS LISTS ===== */
    .pros-cons-list {
      list-style: none;
      margin: 0 0 28px;
      padding: 0;
    }

    .pros-cons-list li {
      padding: 14px 20px;
      margin-bottom: 0;
      border-left: 4px solid;
      font-size: clamp(0.93rem, 1.8vw, 1rem);
      line-height: 1.6;
    }

    .pros-cons-list li:nth-child(odd) {
      background: #fafafa;
    }

    .pros-cons-list li:nth-child(even) {
      background: #fff;
    }

    .pros-cons-list li strong {
      display: block;
      margin-bottom: 2px;
    }

    .pros-cons-list.pros li {
      border-left-color: #22c55e;
      border-top: 1px solid #dcfce7;
    }

    .pros-cons-list.pros li strong {
      color: #16a34a;
    }

    .pros-cons-list.pros li {
      color: #15803d;
    }

    .pros-cons-list.cons li {
      border-left-color: #ef5350;
      border-top: 1px solid #fce4e4;
    }

    .pros-cons-list.cons li strong {
      color: #dc2626;
    }

    .pros-cons-list.cons li {
      color: #b91c1c;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: linear-gradient(135deg, #0a0e27, #1a1145, #0f2040);
      color: rgba(255, 255, 255, 0.7);
      padding: 56px 24px 32px;
      margin-top: 40px;
    }

    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

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

    .footer-col h4 {
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
      font-style: normal;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: #c4b5fd;
    }

    .footer-about p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 16px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.25s;
    }

    .footer-social a:hover {
      background: rgba(139, 92, 246, 0.25);
      border-color: rgba(139, 92, 246, 0.4);
      color: #c4b5fd;
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin: 0 0 20px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #c4b5fd;
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 640px) {
      .container {
        padding: 24px 14px 60px;
      }

      .hero {
        padding: 56px 14px 48px;
      }

      .hero-meta {
        gap: 12px;
      }

      th,
      td {
        padding: 10px 8px;
        font-size: 0.85rem;
      }
    }

    /* ===== NAVBAR STYLES ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(10, 14, 39, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      height: 70px;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }

    .nav-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 24px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .nav-logo img {
      height: 32px;
      width: auto;
    }

    .nav-menu {
      display: flex;
      gap: 20px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: #c4b5fd;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 4px;
    }

    /* Mobile Menu */
    @media (max-width: 1100px) {
      .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a0e27;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        gap: 16px;
        align-items: center;
        text-align: center;
        z-index: 999;
      }

      .nav-menu.active {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }

      .hamburger {
        display: block;
      }
    }

    /* ===== AUTHOR SECTION ===== */
    .author-card {
      background: #fff;
      border-radius: 12px;
      padding: 32px;
      margin-top: 60px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 24px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .author-img-wrapper {
      flex-shrink: 0;
    }

    .author-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #e0e7ff;
    }

    .author-content {
      flex: 1;
    }

    .author-header {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 8px;
    }

    .author-card h3 {
      font-size: 1.25rem;
      margin: 0;
      color: #0f2027;
      border-bottom: none;
      padding-bottom: 0;
    }

    .author-role {
      font-size: 0.85rem;
      color: #6366f1;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .author-card p {
      margin: 0;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 640px) {
      .author-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
      }

      .author-header {
        flex-direction: column;
        align-items: center;
        gap: 4px;
      }
    }

/* ===== CASINO CARDS ===== */
.casino-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #eaeaea;
  transition: transform 0.2s, box-shadow 0.2s;
}
.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .casino-card {
    flex-direction: row;
    align-items: center;
  }
}
.casino-card-logo-wrap {
  flex-shrink: 0;
  text-align: center;
  position: relative;
}
.casino-card-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.casino-card-logo-fallback {
  width: 120px;
  height: 120px;
  background: #f0f4f8;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  border-radius: 8px;
}
.casino-card-rating {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #fff;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}
.casino-card-content {
  flex-grow: 1;
}
.casino-card-title {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  color: #0f2027;
  padding-bottom: 0;
  border: none;
}
.casino-card-bonus {
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 12px;
}
.casino-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.casino-card-feature {
  background: #f0fdf4;
  color: #15803d;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #dcfce7;
}
.casino-card-action {
  flex-shrink: 0;
  text-align: center;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
}
.nav-link.active {
  color: #c4b5fd;
  font-weight: 700;
}
