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

:root {
  --green-950:#061A0D; --green-900:#0A2E1A; --green-800:#0F3D22;
  --green-700:#155C30; --green-600:#1A7A40; --green-500:#22A055;
  --green-400:#2DC96B; --green-300:#6FE09A; --green-200:#A8F0C0;
  --green-100:#D4F4E2; --green-50:#F0FBF5;
  --white:#FFFFFF; --off-white:#F7FAF8;
  --gray-100:#EDF2EF; --gray-200:#D1DBD5; --gray-400:#8A9E92;
  --gray-600:#4A5C51; --gray-900:#111A14;
  --gold:#D4AF37; --gold-light:#F0CB5A; --gold-dark:#A8881C;
  --success:#16A34A; --danger:#DC2626; --warning:#D97706; --info:#0284C7;
  --font-display:'Poppins','Segoe UI',sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --radius-sm:4px; --radius-md:8px; --radius-lg:14px;
  --radius-xl:22px; --radius-full:9999px;
}

/* Accessibility utilities */
.skip-link{
  position:absolute;top:-100%;left:16px;z-index:9999;
  background:var(--green-900);color:var(--white);
  padding:10px 18px;border-radius:0 0 var(--radius-md) var(--radius-md);
  font-weight:600;font-size:14px;text-decoration:none;
  transition:top .15s;
}
.skip-link:focus{top:0;}
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{overflow-x:hidden;max-width:100vw;}
*{min-width:0;}
body{font-family:var(--font-body);background:var(--off-white);color:var(--gray-900);line-height:1.7;font-size:16px;}

h1,h2,h3,h4{font-family:var(--font-display);font-weight:700;line-height:1.3;color:var(--green-900);}
h1{font-size:clamp(26px,4vw,46px);}
h2{font-size:clamp(20px,3vw,34px);}
h3{font-size:clamp(16px,2.5vw,22px);}
h4{font-size:15px;font-family:var(--font-body);font-weight:600;}
p{margin-bottom:1rem;color:var(--gray-600);}
a{color:var(--green-600);text-decoration:none;}
a:hover{color:var(--green-500);}
img{max-width:100%;height:auto;display:block;}

.container{max-width:1200px;margin:0 auto;padding:0 24px;}
.section{padding:72px 0;}
.section-green{background:var(--green-50);}
.section-dark{background:var(--green-900);}

/* GREEN BG TEXT RULE */
.section-dark,.section-dark *,
.section-dark p,.section-dark h1,.section-dark h2,
.section-dark h3,.section-dark h4,.section-dark li,
.section-dark span,.section-dark a{color:var(--green-100);}
.section-dark h1,.section-dark h2,.section-dark h3{color:var(--white);}
.section-dark a:hover{color:var(--white);}
.card-green,.card-green *,.card-green p,
.card-green h3,.card-green h4,.card-green li{color:var(--green-100);}
.card-green h2,.card-green h3{color:var(--white);}
.hero-content,.hero-content *,.hero-content p,
.hero-content h1,.hero-content h2{color:var(--white);}
.hero-content p{color:var(--green-100);}
.site-footer,.site-footer *,.site-footer p,
.site-footer li,.site-footer span{color:var(--green-100);}
.site-footer h4{color:var(--gold);}
.site-footer a{color:var(--green-100);}
.site-footer a:hover{color:var(--white);}
.footer-bottom p,.footer-bottom a{color:var(--green-200);}
.rg-line{color:rgba(220,38,38,0.7) !important;}

/* TABLE ALIGNMENT */
.table-wrap{
  width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;
  border-radius:var(--radius-md);border:1px solid var(--gray-200);
  margin:20px 0;
}
table{
  width:100%;border-collapse:collapse;
  table-layout:fixed;font-size:14px;min-width:480px;
}
thead{background:var(--green-600);}
th{
  color:var(--white);padding:12px 16px;text-align:left;
  font-weight:600;font-size:13px;white-space:nowrap;
  vertical-align:middle;border-right:1px solid rgba(255,255,255,0.15);
}
th:last-child{border-right:none;}
th.center,td.center{text-align:center;}
th.right,td.right{text-align:right;}
tbody tr{border-bottom:1px solid var(--gray-100);}
tbody tr:last-child{border-bottom:none;}
tbody tr:nth-child(even){background:var(--green-50);}
tbody tr:hover{background:rgba(26,122,64,0.04);}
td{
  padding:11px 16px;vertical-align:middle;
  color:var(--gray-600);border-right:1px solid var(--gray-100);
  word-wrap:break-word;
}
td:last-child{border-right:none;}
td strong{color:var(--gray-900);}
.rtp-good{color:var(--success);font-weight:600;}
.rtp-avg{color:var(--warning);font-weight:600;}
.rtp-poor{color:var(--danger);font-weight:600;}
.vol-high{background:rgba(220,38,38,0.08);color:var(--danger);padding:2px 8px;border-radius:var(--radius-sm);font-size:12px;font-weight:600;}
.vol-med{background:rgba(217,119,6,0.08);color:var(--warning);padding:2px 8px;border-radius:var(--radius-sm);font-size:12px;font-weight:600;}
.vol-low{background:rgba(22,163,74,0.08);color:var(--success);padding:2px 8px;border-radius:var(--radius-sm);font-size:12px;font-weight:600;}
.table-note{font-size:12px;color:var(--gray-400);margin-top:-16px;margin-bottom:20px;padding:0 4px;}

/* Header */
.site-header{background:var(--white);border-bottom:3px solid var(--green-600);position:sticky;top:0;z-index:100;box-shadow:0 2px 16px rgba(26,122,64,0.1);}
.main-nav{display:flex;align-items:center;justify-content:space-between;padding:12px 24px;max-width:1200px;margin:0 auto;}
.nav-links{display:flex;list-style:none;gap:18px;}
.nav-links>li>a{font-weight:600;font-size:13px;color:var(--green-900);padding:6px 2px;border-bottom:2px solid transparent;transition:color .2s,border-color .2s;white-space:nowrap;}
.nav-links>li>a:hover{color:var(--green-600);border-bottom-color:var(--green-600);}
.dropdown{position:relative;}
.dropdown-menu{display:none;position:absolute;top:110%;left:0;background:var(--white);border:1px solid var(--gray-200);border-top:3px solid var(--green-600);border-radius:0 0 var(--radius-md) var(--radius-md);padding:8px 0;min-width:200px;box-shadow:0 8px 24px rgba(0,0,0,0.12);z-index:300;}
.dropdown:hover .dropdown-menu{display:block;}
.dropdown-menu a{display:block;padding:8px 16px;font-size:13px;color:var(--gray-600);}
.dropdown-menu a:hover{background:var(--green-50);color:var(--green-600);}
.nav-cta{display:flex;gap:8px;align-items:center;}

/* Buttons */
.btn-gold{background:var(--gold);color:var(--gray-900)!important;padding:10px 22px;border-radius:var(--radius-md);font-weight:700;font-size:14px;transition:background .2s,transform .1s;display:inline-block;border:none;cursor:pointer;text-align:center;}
.btn-gold:hover{background:var(--gold-light);color:var(--gray-900)!important;transform:translateY(-1px);}
/* Sidebar CTA cards — prevent section-dark from washing out text on white bg */
.sidebar-card.section-dark p,.sidebar-card.section-dark li{color:var(--gray-600)!important;}
.btn-green{background:var(--green-600);color:var(--white);padding:10px 22px;border-radius:var(--radius-md);font-weight:600;font-size:14px;transition:background .2s;display:inline-block;text-align:center;}
.btn-green:hover{background:var(--green-500);color:var(--white);}
.btn-green-outline{background:transparent;color:var(--green-600);padding:9px 20px;border-radius:var(--radius-md);font-weight:600;font-size:14px;border:2px solid var(--green-600);transition:all .2s;display:inline-block;text-align:center;}
.btn-green-outline:hover{background:var(--green-50);}
.btn-alt{background:var(--white);color:var(--green-700);padding:10px 18px;border-radius:var(--radius-md);font-size:13px;font-weight:600;border:1.5px solid var(--green-200);transition:all .2s;display:inline-block;text-align:center;}
.btn-alt:hover{border-color:var(--green-600);background:var(--green-50);}

/* Hero */
.hero{position:relative;min-height:500px;display:flex;align-items:center;overflow:hidden;}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(6,26,13,0.92) 0%,rgba(6,26,13,0.70) 55%,rgba(6,26,13,0.15) 100%);z-index:1;}
.hero-content{position:relative;z-index:2;max-width:620px;padding:70px 0;}
.cta-group{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px;align-items:center;}
.btn-link{color:var(--green-300);font-size:14px;font-weight:500;text-decoration:underline;}
.btn-link:hover{color:var(--white);}
.trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px;}
.trust-badge{background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.25);padding:5px 14px;border-radius:var(--radius-full);font-size:11px;color:var(--white);font-weight:500;}
.alt-links{display:flex;gap:10px;flex-wrap:wrap;}

/* Provider cards */
.provider-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:20px;transition:all .2s;text-align:center;}
.provider-card:hover{border-color:var(--green-400);transform:translateY(-2px);box-shadow:0 6px 20px rgba(26,122,64,0.1);}
.provider-name{font-weight:700;font-size:15px;color:var(--green-900);margin-bottom:4px;}
.provider-games{font-size:12px;color:var(--gray-400);margin-bottom:8px;}
.provider-badge{display:inline-block;background:var(--green-100);color:var(--green-700);padding:2px 10px;border-radius:var(--radius-full);font-size:11px;font-weight:600;}

/* Game stat card */
.stat-card{background:var(--green-50);border:1px solid var(--green-100);border-radius:var(--radius-md);padding:16px;text-align:center;}
.stat-value{font-size:22px;font-weight:700;color:var(--green-600);font-family:var(--font-display);}
.stat-label{font-size:12px;color:var(--gray-400);margin-top:4px;}

/* Cards */
.card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:24px;transition:all .2s;}
.card:hover{border-color:var(--green-400);box-shadow:0 4px 20px rgba(26,122,64,0.08);transform:translateY(-2px);}
.card-green{background:var(--green-600);border:none;border-radius:var(--radius-lg);padding:24px;}

/* Grids */
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;}
.grid-5{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;}

/* Category badge */
.cat-badge{display:inline-block;padding:3px 10px;border-radius:var(--radius-full);font-size:11px;font-weight:600;}
.badge-video{background:rgba(2,132,199,0.1);color:var(--info);}
.badge-classic{background:rgba(217,119,6,0.1);color:var(--warning);}
.badge-progressive{background:rgba(220,38,38,0.1);color:var(--danger);}
.badge-megaways{background:rgba(124,58,237,0.1);color:#7C3AED;}
.badge-asian{background:rgba(22,163,74,0.1);color:var(--success);}
.badge-bonus-buy{background:rgba(212,175,55,0.15);color:var(--gold-dark);}

/* Pros/cons */
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:20px 0;}
.pros{background:rgba(22,163,74,0.05);border:1px solid rgba(22,163,74,0.2);border-radius:var(--radius-md);padding:20px;}
.cons{background:rgba(220,38,38,0.05);border:1px solid rgba(220,38,38,0.2);border-radius:var(--radius-md);padding:20px;}
.pros h4{color:var(--success);}
.cons h4{color:var(--danger);}
ul.pros-list{list-style:none;}
ul.cons-list{list-style:none;}
ul.pros-list li::before{content:"✓ ";color:var(--success);font-weight:700;}
ul.cons-list li::before{content:"✗ ";color:var(--danger);font-weight:700;}

/* FAQ — card accordion */
.faq-list{display:flex;flex-direction:column;gap:10px;margin-top:28px;}
.faq-item{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-left:4px solid var(--green-600);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:border-left-color .2s, box-shadow .2s;
}
.faq-item:hover{border-left-color:var(--gold);box-shadow:0 2px 12px rgba(26,122,64,0.08);}
.faq-question{
  width:100%;background:none;border:none;
  cursor:pointer;display:flex;justify-content:space-between;align-items:center;
  padding:18px 20px;
  color:var(--green-900);font-size:15px;font-weight:600;
  font-family:var(--font-body);text-align:left;
  transition:background .15s;
}
.faq-question:hover{background:var(--green-50);}
.faq-answer{
  display:none;
  color:var(--gray-600);font-size:14px;line-height:1.75;
  padding:0 20px 18px;border-top:1px solid var(--gray-100);
}
.faq-answer.open{display:block;}
.faq-answer p{margin:0;}
.faq-icon{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;margin-left:16px;
  background:var(--green-100);color:var(--green-700);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:700;line-height:1;
  transition:background .2s, color .2s, transform .2s;
}
.faq-item:hover .faq-icon{background:var(--gold);color:var(--gray-900);}
.faq-answer.open + * .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon{
  background:var(--gold);color:var(--gray-900);transform:rotate(45deg);
}

/* Stars */
.stars{color:var(--gold);font-size:20px;letter-spacing:2px;}

/* Breadcrumb */
.breadcrumb{font-size:13px;color:var(--gray-400);margin-bottom:24px;overflow-x:auto;white-space:nowrap;}
.breadcrumb a{color:var(--green-500);}
.breadcrumb span{margin:0 6px;}

/* Author bio */
.author-bio{background:var(--green-50);border:1px solid var(--green-100);border-radius:var(--radius-lg);padding:20px 24px;display:flex;gap:16px;align-items:flex-start;margin:32px 0;}
.author-avatar{width:52px;height:52px;background:var(--green-600);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:700;font-size:18px;flex-shrink:0;}
.author-info p{color:var(--gray-600);font-size:14px;}

/* Age badge */
.age-badge{background:var(--danger);color:var(--white);width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;margin-bottom:12px;}

/* RG banner */
.rg-banner{background:rgba(220,38,38,0.05);border:1px solid rgba(220,38,38,0.18);padding:14px 24px;border-radius:var(--radius-md);font-size:13px;text-align:center;color:var(--gray-600);}

/* Footer */
.site-footer{background:var(--green-900);padding:60px 0 32px;}
.footer-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:20px;margin-bottom:40px;}
.footer-grid h4{font-size:11px;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:14px;font-family:var(--font-body);}
.footer-grid ul{list-style:none;}
.footer-grid li{margin-bottom:8px;}
.footer-grid a{font-size:12px;}
.footer-grid p{font-size:12px;margin-bottom:6px;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:24px;font-size:12px;}
.footer-bottom nav{margin-top:8px;}
.footer-bottom nav a{margin:0 6px;}

/* Article/blog layout */
.article-layout{display:grid;grid-template-columns:1fr 300px;gap:48px;align-items:start;}
.article-body h2{margin:32px 0 16px;}
.article-body h3{margin:24px 0 12px;}
.article-body p{margin-bottom:16px;}
.article-body ul,.article-body ol{margin:0 0 16px 24px;}
.article-body li{margin-bottom:8px;color:var(--gray-600);}
.sidebar{position:sticky;top:80px;}
.sidebar-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:20px;margin-bottom:20px;}
.sidebar-card h4{color:var(--green-900);margin-bottom:12px;font-size:14px;}
.game-stat-row{display:flex;justify-content:space-between;align-items:center;padding:9px 0;border-bottom:1px solid var(--gray-100);}
.game-stat-label{font-size:13px;color:var(--gray-400);}
.game-stat-value{font-size:13px;color:var(--gray-900);text-align:right;}

/* Guides/steps */
.step-list{list-style:none;counter-reset:steps;}
.step-list li{counter-increment:steps;padding:16px 0 16px 56px;position:relative;border-bottom:1px solid var(--gray-100);}
.step-list li:last-child{border-bottom:none;}
.step-list li::before{content:counter(steps);position:absolute;left:0;top:14px;width:36px;height:36px;background:var(--green-600);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;font-family:var(--font-display);}

/* Blog cards */
.blog-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);overflow:hidden;transition:all .2s;}
.blog-card:hover{border-color:var(--green-400);box-shadow:0 4px 20px rgba(26,122,64,0.08);transform:translateY(-2px);}
.blog-card-img{width:100%;height:180px;object-fit:cover;}
.blog-card-body{padding:20px;}
.blog-card-meta{font-size:12px;color:var(--gray-400);margin-bottom:8px;}
.blog-card h3{font-size:16px;margin-bottom:8px;}
.blog-card p{font-size:14px;margin-bottom:12px;}

/* Page header */
.page-header{background:var(--green-50);border-bottom:1px solid var(--green-100);padding:40px 0 32px;}
.page-header h1{color:var(--green-900);}
.page-header p{color:var(--gray-600);}
.page-header .breadcrumb{color:var(--gray-400);}
.page-header .breadcrumb a{color:var(--green-600);}

/* Review stars/rating */
.review-score{display:flex;align-items:center;gap:12px;margin:16px 0;}
.score-number{font-size:48px;font-weight:700;color:var(--green-600);font-family:var(--font-display);line-height:1;}
.score-label{font-size:13px;color:var(--gray-400);}

/* MOBILE RESPONSIVE */
@media(max-width:1200px){
  .footer-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
  .grid-5{grid-template-columns:repeat(4,minmax(0,1fr));}
}
@media(max-width:1024px){
  .grid-5{grid-template-columns:repeat(3,minmax(0,1fr));}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr));}
  .footer-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .article-layout{grid-template-columns:1fr;}
}

@media(max-width:768px){
  .container{padding:0 16px;}
  .section{padding:48px 0;}
  .nav-links,.nav-cta{display:none;}
  .nav-links.open{
    display:flex;flex-direction:column;
    position:absolute;top:100%;left:0;right:0;
    background:var(--white);border-top:1px solid var(--gray-200);
    border-bottom:3px solid var(--green-600);padding:12px 0;z-index:300;
  }
  .nav-links.open li{width:100%;}
  .nav-links.open li a{display:block;padding:12px 20px;font-size:15px;border-bottom:none;}
  .nav-cta.open{display:flex;flex-direction:column;padding:12px 20px;gap:10px;background:var(--white);}
  .nav-cta.open a{text-align:center;}
  .hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px;}
  .hamburger span{display:block;width:24px;height:2px;background:var(--green-900);border-radius:2px;transition:all .3s;}
  .dropdown-menu{display:none !important;}
  .grid-5{grid-template-columns:repeat(2,minmax(0,1fr));}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr));}
  .grid-3{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .pros-cons{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
  .hero{min-height:400px;}
  .hero-content{padding:40px 0;max-width:100%;}
  .hero-content h1{font-size:clamp(24px,6vw,34px);}
  .hero-content p{font-size:15px;}
  .hero-overlay{background:linear-gradient(to bottom,rgba(6,26,13,0.9) 0%,rgba(6,26,13,0.75) 100%);}
  .cta-group{flex-direction:column;align-items:flex-start;}
  .btn-gold,.btn-green,.btn-green-outline{width:100%;text-align:center;padding:14px 20px;}
  .btn-link{display:block;text-align:center;}
  .alt-links{flex-direction:column;}
  .btn-alt{width:100%;text-align:center;}
  .author-bio{flex-direction:column;}
  .trust-row{gap:8px;}
  .trust-badge{font-size:10px;padding:4px 10px;}
  .hamburger{display:flex;}
  .article-layout{grid-template-columns:1fr;}
  .sidebar{position:static;}
}

@media(max-width:480px){
  .container{padding:0 12px;}
  .section{padding:36px 0;}
  h1{font-size:clamp(22px,7vw,30px);}
  h2{font-size:clamp(18px,6vw,26px);}
  h3{font-size:clamp(16px,5vw,20px);}
  .grid-5{grid-template-columns:repeat(2,minmax(0,1fr));}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr));}
  .footer-grid{grid-template-columns:1fr;}
  .hero{min-height:340px;}
  .hero-content{padding:32px 0;}
  .site-footer{padding:40px 0 24px;}
  .stat-card{padding:12px;}
  .stat-value{font-size:18px;}
  .provider-card{padding:14px;}
}

@media(max-width:375px){
  .container{padding:0 10px;}
  h1{font-size:22px;}
  h2{font-size:18px;}
  .btn-gold,.btn-green,.btn-green-outline,.btn-alt{font-size:13px;padding:12px 14px;}
  .trust-badge{font-size:10px;padding:3px 8px;}
  .logo-m88{font-size:18px;}
  .logo-slots{font-size:18px;}
  .logo-dot{font-size:13px;}
  .faq-question{font-size:14px;}
  .stat-value{font-size:16px;}
}

/* hamburger hidden on desktop */
.hamburger{display:none;}

/* Logo */
.logo-m88{color:var(--green-600);font-weight:700;font-size:22px;font-family:var(--font-display);}
.logo-slots{color:var(--gray-900);font-weight:700;font-size:22px;font-family:var(--font-display);}
.logo-dot{color:var(--gold);font-weight:600;font-size:16px;font-family:var(--font-display);}
.nav-logo{display:flex;align-items:baseline;gap:0;text-decoration:none;}
.section-title{margin-bottom:40px;}
.section-title p{max-width:600px;margin-top:8px;}
.text-center{text-align:center;}
.mb-0{margin-bottom:0;}
.mt-8{margin-top:8px;}
.mt-16{margin-top:16px;}
.mt-24{margin-top:24px;}
.mt-32{margin-top:32px;}
.mb-8{margin-bottom:8px;}
.mb-16{margin-bottom:16px;}
.mb-24{margin-bottom:24px;}
.mb-32{margin-bottom:32px;}
.gap-12{gap:12px;}
.flex{display:flex;}
.flex-wrap{flex-wrap:wrap;}
.align-center{align-items:center;}
.justify-between{justify-content:space-between;}
.w-full{width:100%;}
.badge{display:inline-block;padding:3px 10px;border-radius:var(--radius-full);font-size:11px;font-weight:600;}
.badge-green{background:var(--green-100);color:var(--green-700);}
.badge-gold{background:rgba(212,175,55,0.15);color:var(--gold-dark);}
.highlight-box{background:var(--green-50);border:1px solid var(--green-200);border-radius:var(--radius-md);padding:20px 24px;margin:20px 0;}
.highlight-box p{margin-bottom:0;color:var(--green-800);}

/* Provider logo images */
.provider-logo{
  display:block;
  width:140px;height:56px;
  object-fit:contain;
  margin:0 auto 10px;
  border-radius:var(--radius-sm);
}

/* ====================================================
   HOMEPAGE REDESIGN — APPROACH B
   Premium editorial with casino punch
   ==================================================== */

/* Hero — taller, gold accent, larger primary CTA */
.hero{min-height:560px;}
.hero-content{max-width:580px;}
.hero-content h1::after{
  content:'';display:block;width:52px;height:3px;
  background:var(--gold);border-radius:2px;margin-top:14px;
}
.hero .btn-gold{padding:14px 30px;font-size:15px;letter-spacing:0.3px;}

/* Trust scoreboard — replaces trust-row */
.trust-scoreboard{
  display:flex;align-items:stretch;
  background:rgba(6,26,13,0.55);
  border:1px solid rgba(212,175,55,0.3);
  border-radius:var(--radius-lg);
  margin-top:28px;width:fit-content;max-width:100%;
}
.trust-stat{padding:12px 20px;text-align:center;min-width:80px;}
.trust-stat-val{display:block;font-size:17px;font-weight:700;color:var(--gold);font-family:var(--font-display);line-height:1.3;}
.trust-stat-lbl{display:block;font-size:10px;color:var(--green-200);margin-top:3px;text-transform:uppercase;letter-spacing:0.5px;}
.trust-vline{width:1px;background:rgba(212,175,55,0.25);flex-shrink:0;margin:8px 0;}

/* Section backgrounds — alternating rhythm */
.section-providers{padding:60px 0;background:var(--white);}
.section-games{padding:60px 0;background:var(--green-50);}
.section-categories{padding:60px 0;background:var(--white);}
.section-alt-links{padding:36px 0;background:var(--green-950);}
.section-bonuses{padding:72px 0;}
.section-blog{padding:60px 0;background:var(--off-white);}
.section-faq{padding:60px 0;background:var(--white);}

/* Section H2 gold underline accent */
.section-providers h2,.section-games h2,.section-categories h2,
.section-blog h2,.section-faq h2,.section-bonuses h2{
  display:inline-block;border-bottom:3px solid var(--gold);
  padding-bottom:10px;margin-bottom:12px;
}
.section-alt-links h2{
  color:var(--white);display:inline-block;
  border-bottom:3px solid var(--gold);padding-bottom:10px;margin-bottom:12px;
}

/* Section intro */
.section-intro{color:var(--gray-600);max-width:640px;margin-bottom:32px;line-height:1.7;}
.section-bonuses .section-intro,.section-alt-links .section-intro{color:var(--green-100);}
.section-alt-links p{color:var(--green-100);}

/* Provider grid — casino hover, gold featured accent */
.provider-grid{margin-top:32px;}
.provider-card{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);padding:18px 14px 16px;
  transition:all .22s;text-align:center;text-decoration:none;
  display:flex;flex-direction:column;align-items:center;
}
.provider-card:hover{
  border-color:var(--gold);
  transform:translateY(-3px);
  box-shadow:0 8px 28px rgba(212,175,55,0.14);
}
.provider-card--featured{border-top:3px solid var(--gold)!important;}
.provider-count{display:block;font-size:12px;color:var(--gray-400);margin-bottom:6px;}
.provider-games{list-style:none;font-size:12px;color:var(--gray-600);margin-bottom:10px;width:100%;}
.provider-games li{padding:1px 0;}
.provider-card--all{background:var(--green-50);border-color:var(--green-200);}
.provider-all-icon{
  width:48px;height:48px;background:var(--green-600);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:700;color:var(--white);margin:0 auto 10px;
}

/* Badge colour system */
.badge{display:inline-block;padding:3px 10px;border-radius:var(--radius-full);font-size:11px;font-weight:600;}
.badge-hot{background:rgba(220,38,38,0.1);color:var(--danger);}
.badge-top{background:rgba(212,175,55,0.15);color:var(--gold-dark);}
.badge-popular{background:rgba(22,163,74,0.1);color:var(--success);}
.badge-classic{background:rgba(2,132,199,0.1);color:var(--info);}
.badge-jackpot{background:rgba(124,58,237,0.1);color:#7C3AED;}
.badge-rtp{background:rgba(212,175,55,0.15);color:var(--gold-dark);}
.badge-asian{background:rgba(217,119,6,0.1);color:var(--warning);}
.badge-all{background:rgba(26,122,64,0.1);color:var(--green-700);}

/* Small gold CTA for table rows */
.btn-sm-gold{
  background:var(--gold);color:var(--gray-900);
  padding:5px 16px;border-radius:var(--radius-sm);
  font-weight:700;font-size:12px;display:inline-block;
  white-space:nowrap;transition:background .15s;
}
.btn-sm-gold:hover{background:var(--gold-light);color:var(--gray-900);}

/* Category cards — coloured top borders */
.category-grid{margin-top:32px;}
.category-card{
  display:flex;flex-direction:column;
  background:var(--white);border:1px solid var(--gray-200);
  border-top:4px solid transparent;
  border-radius:var(--radius-lg);padding:24px 20px;
  transition:all .22s;text-decoration:none;
}
.category-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,0.07);}
.category-icon{font-size:2rem;margin-bottom:12px;display:block;}
.category-card h3{color:var(--green-900);margin-bottom:8px;font-size:16px;}
.category-card p{color:var(--gray-600);font-size:14px;margin:0;flex-grow:1;}
.category-card:nth-child(1){border-top-color:var(--info);}
.category-card:nth-child(2){border-top-color:var(--warning);}
.category-card:nth-child(3){border-top-color:var(--danger);}
.category-card:nth-child(4){border-top-color:#7C3AED;}
.category-card:nth-child(5){border-top-color:var(--gold-dark);}
.category-card:nth-child(6){border-top-color:var(--success);}
.category-card:nth-child(7){border-top-color:#EF4444;}
.category-card:nth-child(8){border-top-color:var(--green-600);}

/* Alt links dark section */
.alt-links-group{display:flex;gap:12px;flex-wrap:wrap;margin:20px 0 10px;}
.section-alt-links .btn-alt{
  background:rgba(255,255,255,0.08);
  color:var(--green-100);border-color:rgba(255,255,255,0.25);
}
.section-alt-links .btn-alt:hover{
  background:rgba(212,175,55,0.15);border-color:var(--gold);color:var(--gold);
}
.alt-links-disclaimer{font-size:13px;color:var(--green-300);}
.alt-links-more{font-size:13px;color:var(--green-200);margin-top:8px;}
.alt-links-more a{color:var(--gold);}

/* Bonus grid — fix 3-column layout + gold top accent */
.bonus-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;margin:32px 0 20px;
}
.card-green{border-top:4px solid var(--gold);}
.bonus-icon{font-size:2.5rem;display:block;margin-bottom:14px;}
.bonus-terms{list-style:none;margin:12px 0 20px;font-size:13px;}
.bonus-terms li{padding:6px 0;color:var(--green-100);border-bottom:1px solid rgba(255,255,255,0.1);}
.bonus-terms li:last-child{border-bottom:none;}
.card-green .btn-gold{display:block;width:100%;text-align:center;padding:12px 20px;}
.bonus-disclaimer{font-size:12px;color:var(--green-300);text-align:center;}

/* Blog cards */
.blog-card{text-decoration:none;}
.blog-tag{
  display:inline-block;
  background:rgba(26,122,64,0.1);color:var(--green-700);
  padding:2px 10px;border-radius:var(--radius-full);
  font-size:11px;font-weight:600;margin-bottom:8px;
}
.blog-read-more{color:var(--green-600);font-size:13px;font-weight:600;display:block;margin-top:10px;}
.blog-cta{text-align:center;margin-top:36px;}

/* Mobile adjustments */
@media(max-width:768px){
  .hero{min-height:420px;}
  .trust-scoreboard{width:100%;border-radius:var(--radius-md);}
  .trust-stat{flex:1;padding:10px 12px;}
  .trust-vline{display:none;}
  .bonus-grid{grid-template-columns:1fr;gap:16px;}
  .section-providers,.section-games,.section-categories,
  .section-alt-links,.section-bonuses,.section-blog,
  .section-faq{padding:40px 0;}
  .alt-links-group{flex-direction:column;}
  .section-alt-links .btn-alt{width:100%;text-align:center;}
  .category-card{padding:18px 16px;}
}
@media(max-width:480px){
  .hero{min-height:360px;}
  .trust-stat-val{font-size:15px;}
  .trust-stat-lbl{font-size:9px;}
  .trust-stat{padding:8px 10px;}
}
