/* ===========================
   WinAMPM — Pro Stylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
    --gold:       #FFD700;
    --gold-light: #ffe54c;
    --gold-dark:  #b8960c;
    --black:      #080808;
    --dark:       #101010;
    --dark2:      #161616;
    --dark3:      #1e1e1e;
    --dark4:      #252525;
    --white:      #ffffff;
    --grey:       #999999;
    --green:      #00c851;
    --green-dark: #00a040;
    --red:        #ff4444;
    --radius:     10px;
    --shadow:     0 8px 32px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', Arial, sans-serif;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* =============================
   TOP BAR
   ============================= */
.top-bar {
    background: var(--dark3);
    border-bottom: 1px solid #2a2a2a;
    padding: 6px 0;
    font-size: 12px;
    color: var(--grey);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar .tb-note { color: var(--gold); font-weight: 600; letter-spacing: 0.5px; }
.top-bar .tb-links a { color: var(--grey); margin-left: 15px; font-size: 11px; }
.top-bar .tb-links a:hover { color: var(--gold); }

/* =============================
   HEADER
   ============================= */
.site-header {
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}
.logo-win  { color: var(--white); }
.logo-ampm { color: var(--gold); }
.logo-dot  { color: var(--grey); font-weight: 400; font-size: 18px; }

.main-nav ul { list-style: none; display: flex; gap: 5px; }
.main-nav a {
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(255,215,0,0.08);
}

.header-cta .btn-gold { padding: 9px 22px; font-size: 12px; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}

/* =============================
   BUTTONS
   ============================= */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #f0b800);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(255,215,0,0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-1px);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,200,81,0.3);
}
.btn-green:hover {
    filter: brightness(1.1);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,200,81,0.45);
}

/* =============================
   HERO
   ============================= */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-bg.jpeg') center/cover no-repeat;
    filter: brightness(0.25);
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(10,8,2,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 15px;
    max-width: 580px;
    color: #bbb;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* =============================
   TRUST BAR
   ============================= */
.trust-bar {
    background: var(--dark3);
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 18px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}

.trust-item .ti-icon {
    color: var(--gold);
    font-size: 20px;
}

/* =============================
   SECTION HEADERS
   ============================= */
.section { padding: 70px 0; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--dark2); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 span { color: var(--gold); }

.section-header p {
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 15px auto 0;
}

/* =============================
   TOP PICK (FEATURED)
   ============================= */
.featured-casino {
    background: linear-gradient(135deg, #1a1500 0%, #0d0d0d 50%, #1a1500 100%);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: var(--radius);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 0 60px rgba(255,215,0,0.08);
}

.featured-casino::before {
    content: '#1';
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,215,0,0.04);
    line-height: 1;
    pointer-events: none;
}

.fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), #f0b800);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.fc-name {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.fc-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.badge.badge-gold {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
    color: var(--gold);
}

.fc-offer {
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.fc-testimonial {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: #bbb;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 500px;
}

.fc-actions { display: flex; gap: 12px; align-items: center; }

.fc-right { text-align: center; }

.stars {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.rating-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.rating-label {
    font-size: 11px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* =============================
   CASINO CARDS
   ============================= */
.casino-cards { display: flex; flex-direction: column; gap: 16px; }

.casino-card {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    gap: 20px;
    align-items: center;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    border-color: rgba(255,215,0,0.3);
    background: #212121;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.casino-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.25s;
}
.casino-card:hover::after { opacity: 1; }

.card-rank {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #3a3a3a;
    text-align: center;
    line-height: 1;
}
.casino-card:hover .card-rank { color: var(--gold); }

.card-info { min-width: 0; }

.card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.card-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-offer {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
}

.card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.card-tag {
    background: rgba(255,255,255,0.04);
    border: 1px solid #2e2e2e;
    color: var(--grey);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-no-deposit {
    background: rgba(0,200,81,0.08);
    border-color: rgba(0,200,81,0.2);
    color: var(--green);
}

.card-rating {
    text-align: center;
    min-width: 60px;
}

.card-rating-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.card-rating-max {
    font-size: 11px;
    color: var(--grey);
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 130px;
}

.btn-play {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 11px 20px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: 0 3px 12px rgba(0,200,81,0.25);
}
.btn-play:hover {
    filter: brightness(1.1);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(0,200,81,0.4);
}

.btn-review-sm {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid #333;
    color: var(--grey);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.btn-review-sm:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =============================
   LAYOUT: MAIN + SIDEBAR
   ============================= */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

/* =============================
   SIDEBAR
   ============================= */
.sidebar { position: sticky; top: 80px; }

.sidebar-widget {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.sidebar-widget-header {
    background: linear-gradient(135deg, #1a1400, #111);
    border-bottom: 1px solid rgba(255,215,0,0.2);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget-header h3 {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sidebar-casino {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    border-bottom: 1px solid #1e1e1e;
    transition: background 0.15s;
}
.sidebar-casino:last-child { border-bottom: none; }
.sidebar-casino:hover { background: rgba(255,255,255,0.02); }

.sc-name {
    font-size: 13px;
    color: #ddd;
    font-weight: 600;
}

.sc-play {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s;
}
.sc-play:hover {
    filter: brightness(1.15);
    color: var(--white);
}

.sidebar-promo {
    background: linear-gradient(135deg, #1a1400, #0a0a0a);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
}

.sidebar-promo h3 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sidebar-promo p {
    color: var(--grey);
    font-size: 12px;
    margin-bottom: 15px;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
    background: #040404;
    border-top: 1px solid #1e1e1e;
}

.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--grey);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e1e1e;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: #777;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.newsletter-form p {
    color: var(--grey);
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.newsletter-form .input-row {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-right: none;
    color: var(--white);
    border-radius: 6px 0 0 6px;
    font-size: 13px;
    outline: none;
}
.newsletter-form input:focus { border-color: var(--gold-dark); }

.newsletter-form button {
    padding: 11px 18px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy { color: #555; font-size: 12px; }
.footer-copy a { color: #555; }
.footer-copy a:hover { color: var(--gold); }

.footer-disclaimer {
    color: #444;
    font-size: 11px;
    max-width: 700px;
    text-align: right;
    line-height: 1.5;
}

/* =============================
   INNER PAGE HERO
   ============================= */
.inner-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1400 100%);
    border-bottom: 2px solid var(--gold-dark);
    padding: 50px 0;
    text-align: center;
}
.breadcrumb {
    color: var(--grey);
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; color: #444; }
.inner-hero h1 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.inner-hero h1 span { color: var(--gold); }
.inner-hero p {
    color: var(--grey);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================
   REVIEW HERO BOX
   ============================= */
.review-hero {
    background: linear-gradient(135deg, #0d0d00 0%, #101010 50%, #0d0d00 100%);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: var(--radius);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}
.review-title-label {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.review-casino-name {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.review-offer {
    font-size: 20px;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.review-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.review-rating-box {
    text-align: center;
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: var(--radius);
    padding: 24px 30px;
    min-width: 150px;
}
.review-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.review-score-label {
    font-size: 11px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* =============================
   QUICK FACTS TABLE
   ============================= */
.quick-facts {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
}
.quick-facts-header {
    background: linear-gradient(135deg, #1a1400, #111);
    border-bottom: 1px solid rgba(255,215,0,0.2);
    padding: 14px 20px;
}
.quick-facts-header h3 {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.quick-facts table { width: 100%; border-collapse: collapse; }
.quick-facts td {
    padding: 12px 20px;
    border-bottom: 1px solid #1e1e1e;
    font-size: 13px;
}
.quick-facts td:first-child { color: var(--grey); width: 40%; font-weight: 600; }
.quick-facts td:last-child { color: var(--white); }
.quick-facts tr:last-child td { border-bottom: none; }

/* =============================
   REVIEW SECTIONS
   ============================= */
.review-section { margin-bottom: 40px; }
.review-section h2 {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}
.review-section h2 span { color: var(--gold); }
.review-section h3 { font-size: 16px; font-weight: 700; color: var(--gold); margin: 20px 0 10px; }
.review-section p { color: #bbb; font-size: 14px; line-height: 1.8; margin-bottom: 15px; }

/* =============================
   PROS / CONS
   ============================= */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.pros-box, .cons-box {
    background: var(--dark3);
    border-radius: var(--radius);
    padding: 24px;
}
.pros-box { border-top: 3px solid var(--green); }
.cons-box { border-top: 3px solid var(--red); }
.pros-box h3 { color: var(--green); margin-bottom: 15px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.cons-box h3 { color: var(--red); margin-bottom: 15px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.pros-cons ul { list-style: none; }
.pros-cons li {
    padding: 7px 0;
    font-size: 13px;
    color: #ccc;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    border-bottom: 1px solid #1e1e1e;
}
.pros-cons li:last-child { border-bottom: none; }
.pros-box li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-box li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* =============================
   VERDICT BOX
   ============================= */
.verdict-box {
    background: linear-gradient(135deg, #1a1500 0%, #0d0d0d 50%, #1a1500 100%);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255,215,0,0.06);
}
.verdict-box h3 { color: var(--gold); font-size: 16px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.verdict-box p { color: #bbb; font-size: 14px; max-width: 600px; margin: 0 auto 20px; line-height: 1.7; }

/* =============================
   FAQ
   ============================= */
.faq-item {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    margin-bottom: 10px;
}
.faq-q {
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 20px; font-weight: 400; }
.faq-a { padding: 0 20px 16px; color: var(--grey); font-size: 13px; line-height: 1.7; }

/* =============================
   CONTENT PAGES (privacy, contact, etc.)
   ============================= */
.content-page { max-width: 820px; }
.content-page h2 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--gold);
    margin: 35px 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}
.content-page h3 { font-size: 15px; font-weight: 700; color: var(--white); margin: 20px 0 10px; }
.content-page p { color: #bbb; font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.content-page ul { color: #bbb; font-size: 14px; line-height: 1.8; margin: 0 0 14px 22px; }
.content-page li { margin-bottom: 7px; }

/* =============================
   BONUS CARDS
   ============================= */
.bonus-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.bonus-card {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    transition: all 0.25s;
}
.bonus-card:hover { border-color: rgba(255,215,0,0.3); background: #212121; }
.bonus-card-name { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.bonus-card-offer { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.bonus-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.bonus-type {
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    color: var(--gold);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================
   PAYMENT GRID
   ============================= */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.payment-item {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}
.payment-item:hover { border-color: rgba(255,215,0,0.3); background: #212121; }
.payment-item-icon { font-size: 28px; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; min-height: 36px; }
.payment-logo { width: 64px; height: auto; border-radius: 6px; display: block; }
.payment-item-name { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.payment-item-time { font-size: 11px; color: var(--green); }

/* =============================
   CONTACT FORM
   ============================= */
.contact-form {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 40px;
    max-width: 620px;
    margin-bottom: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Open Sans', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold-dark); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* =============================
   SLOT CARDS
   ============================= */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.slot-card {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s;
}
.slot-card:hover { border-color: rgba(255,215,0,0.3); background: #212121; transform: translateY(-2px); }
.slot-card-icon { font-size: 36px; margin-bottom: 12px; }
.slot-card-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.slot-card-provider { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.slot-card-rtp { font-size: 13px; color: var(--green); font-weight: 600; }

/* =============================
   INFO BOXES
   ============================= */
.info-box {
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.15);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #ccc;
    line-height: 1.7;
}
.info-box strong { color: var(--gold); }

.warning-box {
    background: rgba(255,68,68,0.05);
    border: 1px solid rgba(255,68,68,0.15);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #ccc;
    line-height: 1.7;
}

/* =============================
   RESPONSIBLE GAMING ICONS
   ============================= */
.resp-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.resp-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 10px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 960px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    .sidebar { position: static; }
    .hero h1 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .casino-card {
        grid-template-columns: 40px 1fr auto;
    }
    .card-rating { display: none; }
}

@media (max-width: 640px) {
    .nav-toggle { display: block; }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75vw;
        max-width: 300px;
        height: 100vh;
        background: #0d0d0d;
        border-left: 1px solid #2a2a2a;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; display: block; }
    .main-nav ul { flex-direction: column; gap: 5px; }
    .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #1e1e1e; }

    .header-cta { display: none; }

    /* Hero */
    .hero { min-height: auto; }
    .hero-content { padding: 44px 0 36px; text-align: center; }
    .hero h1 { font-size: 24px; line-height: 1.2; margin-bottom: 14px; max-width: 100%; }
    .hero p { font-size: 14px; margin-bottom: 24px; max-width: 100%; }
    .hero-ctas { gap: 10px; margin-bottom: 32px; justify-content: center; }
    .hero-ctas .btn { padding: 11px 20px; font-size: 12px; }
    .hero-stats { gap: 14px; justify-content: center; }
    .hero-stat-num { font-size: 20px; }
    .hero-stat-label { font-size: 10px; }
    .hero-eyebrow { font-size: 10px; margin-bottom: 14px; }

    /* Trust bar */
    .trust-bar { padding: 12px 0; }
    .trust-items { gap: 14px; justify-content: flex-start; }
    .trust-item { font-size: 12px; }

    /* Sections */
    .section { padding: 36px 0; }

    /* Section headers — center everything on mobile regardless of inline styles */
    .section-header,
    .section-header[style] { text-align: center !important; }
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 13px; }
    .section-header .divider { margin-left: auto !important; margin-right: auto !important; }

    /* Featured casino */
    .featured-casino {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        margin-bottom: 32px;
        text-align: center;
    }
    .fc-right { display: none; }
    .fc-name { font-size: 24px; margin-bottom: 8px; }
    .fc-offer { font-size: 16px; margin-bottom: 12px; }
    .fc-badge { font-size: 9px; }
    .fc-badges { justify-content: center; }
    .fc-testimonial { font-size: 12px; padding: 10px 12px; max-width: 100%; }
    .fc-actions { flex-direction: column; gap: 10px; align-items: center; }
    .fc-actions .btn { width: 100%; text-align: center; }

    /* Casino cards */
    .casino-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }
    .card-rank { display: none; }
    .card-name { font-size: 15px; }
    .card-offer { font-size: 12px; }
    .card-actions { flex-direction: row; }
    .btn-play, .btn-review-sm { flex: 1; }

    /* Sidebar (stacks below on mobile) */
    .sidebar-widget { margin-bottom: 16px; }
    .sidebar-promo { padding: 18px 14px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .trust-items { gap: 20px; justify-content: flex-start; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .footer-disclaimer { text-align: left; }
    .top-bar .tb-links { display: none; }
}

/* =============================
   BLOG
   ============================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}
.blog-card {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: rgba(255,215,0,0.3);
    background: #212121;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
}
.blog-card-thumb {
    background: linear-gradient(135deg, #1a1400, #0d0d0d);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.blog-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 14px;
    border-top: 1px solid #1e1e1e;
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }

/* Category filter */
.cat-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.cat-filter {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    color: var(--grey);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 7px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.cat-filter:hover, .cat-filter.active {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
    color: var(--gold);
}

/* Individual post */
.post-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1400 100%);
    border-bottom: 2px solid var(--gold-dark);
    padding: 60px 0 50px;
}
.post-cat-label {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.post-hero h1 {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    max-width: 760px;
    margin-bottom: 20px;
}
.post-hero h1 span { color: var(--gold); }
.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-meta-bar strong { color: var(--gold); }

/* Article content */
.post-content {
    font-size: 15px;
    line-height: 1.85;
    color: #ccc;
    max-width: 760px;
}
.post-content h2 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}
.post-content h2 span { color: var(--gold); }
.post-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
    margin: 28px 0 12px;
}
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol {
    margin: 0 0 18px 22px;
}
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--white); }
.post-content a { color: var(--gold); }
.post-content a:hover { color: var(--gold-light); }
.post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    margin: 24px 0;
    background: rgba(255,215,0,0.04);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #bbb;
}

/* Post CTA box */
.post-cta-box {
    background: linear-gradient(135deg, #1a1500 0%, #0d0d0d 50%, #1a1500 100%);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}
.post-cta-box h3 { color: var(--gold); font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.post-cta-box p { color: #bbb; font-size: 13px; margin-bottom: 18px; }

/* Author box */
.author-box {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 40px 0;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), #1a1400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.author-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.author-role { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.author-bio { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* Related posts */
.related-posts { margin-top: 50px; padding-top: 40px; border-top: 1px solid #2a2a2a; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.page-btn {
    background: var(--dark3);
    border: 1px solid #2a2a2a;
    color: var(--grey);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}
.page-btn:hover, .page-btn.active {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
    color: var(--gold);
}

@media (max-width: 960px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .post-hero h1 { font-size: 28px; }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; }
    .post-hero h1 { font-size: 22px; }
}
