/* ============================================
   SHARED CSS — All Pages
   Used by: casino reviews, guide pages, legal, bonuses
   ============================================ */

/* --- Reusable Utility Classes ---
   These replace the inline styles scattered across casino reviews,
   legal pages, and guide pages. */

/* Full-width bonus CTA inside .bonus-body */
.bonus-body .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Larger CTA button in final-cta sections */
.final-cta .btn-primary,
.btn--lg {
    font-size: 1.2rem;
    padding: 12px 30px;
}

/* Casino logo container dark bg */
.casino-logo-container {
    background-color: #e8e8e8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.casino-logo-container img {
    max-width: 250px;
    height: auto;
    display: block;
}

/* About section image spacing */
.about-image {
    margin: 2rem 0;
}

/* About section spacing */
.about-section {
    margin: 2rem 0;
}

/* Promo code inline row */
.promo-codes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-codes .promo-code {
    margin: 0;
}

/* Legal page back-home button */
.back-home {
    margin-top: 3rem;
    text-align: center;
}

.back-home .button {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
}

.back-home .fas {
    margin-right: 0.5rem;
}

/* Section top margin (index + bonuses) */
#top-casinos,
#top-bonuses {
    margin-top: 30px;
}

/* Spacer div (guides page) */
.section-spacer {
    height: 60px;
}

/* Reduce the large gap between content and footer */
.payid-guide {
    padding-bottom: 30px;
}

/* Remove bottom margin from last section to avoid gap before footer */
.payid-content .payid-section:last-child {
    margin-bottom: 0;
}


/* --- Comparison Table (Desktop/Mobile Toggle) --- */
.casino-comparison-table,
.pokies-comparison-table,
.withdrawal-comparison-table {
    display: none;
}

.casino-comparison-cards,
.pokies-comparison-cards,
.withdrawal-comparison-cards {
    display: block;
}

@media (min-width: 992px) {
    .casino-comparison-table,
    .pokies-comparison-table,
    .withdrawal-comparison-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        margin: 30px 0;
    }

    .casino-comparison-cards,
    .pokies-comparison-cards,
    .withdrawal-comparison-cards {
        display: none;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 20px;
        text-align: left;
        border-bottom: 1px solid #e1e4e8;
    }

    .comparison-table th {
        background: linear-gradient(135deg, #34a74c 0%, #2a8c3d 100%);
        color: white;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comparison-table tr:hover td {
        background: rgba(52, 167, 76, 0.05);
    }

    .comparison-table td {
        color: #333333;
        font-size: 14px;
    }

    .comparison-table .casino-logo {
        width: 100px;
        height: auto;
    }

    /* Pokies page has slightly larger logos with background */
    .pokies-comparison-table .comparison-table .casino-logo {
        width: 120px;
        background: #a6a3a35b;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .comparison-table .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .comparison-table .rating-stars {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .comparison-table .rating-stars i {
        color: #E6B422;
        font-size: 12px;
    }

    .comparison-table .rating-stars span {
        margin-left: 6px;
        font-weight: 600;
        color: #666666;
    }
}

/* --- Payout Speed Badges (instant-withdrawal page) --- */
@media (min-width: 992px) {
    .payout-speed {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 13px;
    }

    .payout-speed.fast {
        background: rgba(52, 167, 76, 0.15);
        color: #28a745;
    }

    .payout-speed.medium {
        background: rgba(230, 180, 34, 0.15);
        color: #b38a00;
    }
}

/* --- Content Intro & Text Styles --- */
.content-intro p,
.pokies-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
}

.content-intro p strong,
.pokies-intro p strong {
    color: #333333;
    font-weight: 600;
}

.pokies-intro p em {
    color: #34a74c;
    font-style: italic;
}

.pokies-intro {
    margin-bottom: 30px;
}

/* --- Anchor Links in Content --- */
.pokies-intro a,
.payid-section__content a {
    color: #34a74c;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.pokies-intro a:hover,
.payid-section__content a:hover {
    color: #2a8c3d;
    text-decoration: none;
}

/* --- Content strong/em --- */
.payid-section__content strong {
    color: #333333;
}

.payid-section__content em {
    color: #34a74c;
}

/* --- Step Lists (numbered) --- */
.step-list,
.deposit-steps,
.withdrawal-steps {
    counter-reset: step-counter;
    padding-left: 0;
    margin: 20px 0;
}

.step-list li,
.deposit-steps li,
.withdrawal-steps li {
    list-style: none;
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.step-list li strong,
.deposit-steps li strong,
.withdrawal-steps li strong {
    color: #333333;
}

.step-list li::before,
.deposit-steps li::before,
.withdrawal-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #34a74c 0%, #2a8c3d 100%);
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
}

/* Pokies steps have slightly smaller circles */
.deposit-steps li,
.withdrawal-steps li {
    padding-left: 45px;
}

.deposit-steps li::before,
.withdrawal-steps li::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

/* --- Benefits Grid (payid-casino page) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 32px;
    color: #34a74c;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #212529;
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}

/* --- Pokie Type Cards (pokies page) --- */
.popular-pokies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.pokie-type-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pokie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pokie-type-card i {
    font-size: 36px;
    color: #34a74c;
    margin-bottom: 15px;
}

.pokie-type-card h3 {
    color: #212529;
    font-size: 18px;
    margin-bottom: 10px;
}

.pokie-type-card p {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}

/* --- Delay Reasons Grid (instant-withdrawal page) --- */
.delay-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.delay-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delay-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.delay-card i {
    font-size: 28px;
    color: #E6B422;
    margin-bottom: 12px;
}

.delay-card h3 {
    color: #212529;
    font-size: 17px;
    margin-bottom: 10px;
}

.delay-card p {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}

/* --- Tips Grid (instant-withdrawal page) --- */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tip-card {
    background: linear-gradient(135deg, rgba(52, 167, 76, 0.08) 0%, rgba(42, 140, 61, 0.08) 100%);
    border: 1px solid rgba(52, 167, 76, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tip-card i {
    font-size: 24px;
    color: #34a74c;
    min-width: 30px;
    margin-top: 2px;
}

.tip-card h3 {
    color: #212529;
    font-size: 16px;
    margin-bottom: 6px;
}

.tip-card p {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* --- Pros/Cons Grid (bonuses page) --- */
.pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

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

/* ============================================
   CONTENT CARDS — Unified Component System
   ============================================
   
   COLOR SYSTEM (strict):
   
   WHITE CARD on LIGHT PAGE BG (#F8F9FA)
   Card BG: #ffffff    Border: #e8e8e8
   Text: #4a4a4a    Headings: #1a1a1a
   Em: #2a8c3d    Accent border: #34a74c (left 4px)
   
   ============================================ */

/* --- Base Content Card --- */
.content-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* Left green accent border */
.content-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #34a74c;
    border-radius: 4px 0 0 4px;
}

/* --- Card Typography --- */
.content-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.content-card p {
    color: #4a4a4a;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 15px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card strong {
    color: #1a1a1a;
    font-weight: 600;
}

.content-card em {
    color: #2a8c3d;
    font-style: italic;
}

.content-card ul {
    color: #4a4a4a;
    margin: 0 0 16px 20px;
    padding: 0;
    list-style: disc;
}

.content-card ul li {
    margin-bottom: 6px;
}

/* --- Callout Box (inside content cards) --- */
.content-callout {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 14px 18px;
    border-left: 4px solid #E6B422;
    margin-top: 14px;
    margin-bottom: 14px;
}

.content-callout p {
    color: #4a4a4a;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.content-callout strong {
    color: #1a1a1a;
}

/* --- Pros / Cons Cards --- */
.card-pros,
.card-cons {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.card-pros::before,
.card-cons::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
}

.card-pros::before { background: #34a74c; }
.card-cons::before { background: #dc3545; }

.card-pros h3,
.card-cons h3 {
    color: #1a1a1a;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}

.card-pros ul,
.card-cons ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.card-pros li,
.card-cons li {
    color: #4a4a4a;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.card-pros li:last-child,
.card-cons li:last-child {
    margin-bottom: 0;
}

.card-pros li span,
.card-cons li span {
    margin-left: 8px;
}

.card-pros strong,
.card-cons strong {
    color: #1a1a1a;
}

.card-pros em,
.card-cons em {
    color: #2a8c3d;
    font-style: italic;
}

/* --- Checklist Grid --- */
.checklist-grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.checklist-item {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 20px;
    border-left: 4px solid #34a74c;
}

.checklist-item h4 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.checklist-item p {
    color: #4a4a4a;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.checklist-item em {
    color: #2a8c3d;
}

.checklist-item strong {
    color: #1a1a1a;
}

/* ============================================
   GUIDE PAGE COMPONENTS
   Replaces inline styles in payid-casino,
   payid-pokies, instant-withdrawal guides
   ============================================ */

/* Icon Section Heading */
.guide-heading {
    color: #212529;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.guide-heading i {
    color: #34a74c;
    margin-right: 10px;
}

/* Icon List (unstyled, flex rows with icons) */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.icon-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.icon-list li:last-child {
    border-bottom: none;
}

.icon-list li i {
    margin-top: 3px;
    min-width: 20px;
}

.icon-list li strong {
    color: #333;
}

/* Icon color variants */
.icon-list li i,
.icon-green { color: #34a74c; }
.icon-gold  { color: #E6B422; }
.icon-red   { color: #dc3545; }

/* Pros / Cons Feature Card */
.feature-card-pro,
.feature-card-con {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
}

.feature-card-pro { border-left-color: #34a74c; }
.feature-card-con { border-left-color: #dc3545; }

.feature-card-pro h3,
.feature-card-con h3 {
    color: #212529;
    margin-bottom: 20px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card-pro h3 i { color: #34a74c; font-size: 1.3rem; }
.feature-card-con h3 i { color: #dc3545; font-size: 1.3rem; }

.feature-card-pro .icon-list li i { color: #34a74c; }
.feature-card-con .icon-list li i { color: #dc3545; }

/* Pros/Cons Grid */
.pros-cons-grid-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Gold CTA Button */
.btn-gold,
a.btn-gold,
.payid-cta__content .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #E6B422 0%, #FFD700 100%);
    color: #1a1a1a !important;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(230, 180, 34, 0.35);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 180, 34, 0.45);
}

.btn-gold i {
    margin-right: 10px;
}

/* Spacing utilities */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.text-center { text-align: center; }
.text-muted { color: #666; }
.text-sm { font-size: 14px; }

/* ============================================
   License Badge & Risk Indicator
   ============================================ */
.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.license-badge i {
    font-size: 11px;
}

.license-badge--curacao {
    background: rgba(230, 180, 34, 0.15);
    color: #b8960a;
    border: 1px solid rgba(230, 180, 34, 0.3);
}

.license-badge--mga {
    background: rgba(52, 167, 76, 0.12);
    color: #2a8c3d;
    border: 1px solid rgba(52, 167, 76, 0.3);
}

.license-badge--anjouan,
.license-badge--tobique {
    background: rgba(108, 117, 125, 0.12);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.risk-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}

.risk-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.risk-indicator--low::before { background: #34a74c; }
.risk-indicator--medium::before { background: #E6B422; }
.risk-indicator--high::before { background: #dc3545; }

.risk-indicator--low { color: #34a74c; }
.risk-indicator--medium { color: #b8960a; }
.risk-indicator--high { color: #dc3545; }

/* ============================================
   Verdict Box (Review Pages)
   ============================================ */
.verdict-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 28px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #E6B422;
}

.verdict-box--recommended { border-left-color: #34a74c; }
.verdict-box--caution { border-left-color: #E6B422; }
.verdict-box--not-recommended { border-left-color: #dc3545; }

.verdict-box__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.verdict-box__rating {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
}

.verdict-box__summary {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 10px;
}

.verdict-box__recommendation {
    font-weight: 600;
    color: #212529;
}

/* ============================================
   Legal Warning Banner
   ============================================ */
.legal-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.legal-warning i {
    color: #856404;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.legal-warning p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   Review Metadata Footer
   ============================================ */
.review-meta {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-size: 13px;
    color: #6c757d;
}

.review-meta__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-meta__item i {
    color: #34a74c;
}

.review-meta__sources {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    width: 100%;
}

.review-meta__sources h4 {
    font-size: 14px;
    color: #495057;
    margin-bottom: 8px;
}

.review-meta__sources ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.review-meta__sources a {
    color: #34a74c;
    text-decoration: none;
    font-size: 13px;
}

.review-meta__sources a:hover {
    text-decoration: underline;
}

/* ============================================
   Review Section Card (for Legal, Payment, etc.)
   ============================================ */
.review-section-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}

.review-section-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.review-section-card__header i {
    font-size: 1.3rem;
    color: #34a74c;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 167, 76, 0.1);
    border-radius: 10px;
}

.review-section-card__header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #212529;
}

.review-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.review-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-info-item__label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.review-info-item__value {
    font-size: 15px;
    color: #212529;
    font-weight: 500;
}

/* Checklist for RG tools */
.review-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.review-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #495057;
}

.review-checklist li i.fa-check-circle { color: #34a74c; }
.review-checklist li i.fa-times-circle { color: #dc3545; }

@media (max-width: 768px) {
    .review-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .review-checklist {
        grid-template-columns: 1fr;
    }
    .verdict-box {
        padding: 20px;
    }
    .legal-warning {
        flex-direction: column;
        gap: 10px;
    }
    .review-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- Numbered Steps (on LIGHT page bg — dark text!) --- */
.content-steps {
    padding-left: 0;
    counter-reset: content-step;
    margin: 15px 0;
}

.content-steps li {
    list-style: none;
    counter-increment: content-step;
    position: relative;
    padding-left: 42px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.content-steps li strong {
    color: #333333;
}

.content-steps li em {
    color: #34a74c;
}

.content-steps li::before {
    content: counter(content-step);
    position: absolute;
    left: 0;
    top: 2px;
    background: #34a74c;
    color: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}


/* ============================================
   MERGED FROM: bonuses.css
   ============================================ */
/* Bonuses Page Styles */
:root {
  --primary: #34a74c;
  /* Updated green */
  --primary-light: #4cce66;
  --primary-dark: #2a8c3d;
  --accent: #E6B422;
  /* Outback gold */
  --accent-hover: #FFD700;
  --text-light: #FFFFFF;
  --text-muted: #666666;
  --text-dark: #333333;
  --bg-light: #F8F9FA;
  --border-color: #e1e4e8;
  --border-radius: 12px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* KinBet Card — no special sizing needed (logo is 333x151) */

/* WinShark Card Specific Adjustment */
.winshark-card .bonus-logo img {
  transform: scale(1.5);
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a1929 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 100px 0;
  padding-top: calc(100px + var(--header-height) + var(--disclosure-height, 32px));
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 100px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  left: 0;
  right: 0;
}

.hero-section .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Ensure content remains centered and readable */
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(0, 163, 255, 0.15) 0%, transparent 30%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 200, 83, 0.2);
  color: #00c853;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-container {
  max-width: 1200px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}



.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: #ffffff;
  letter-spacing: -0.03em;
  max-width: 1000px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.hero-section h1 .gradient-text {
  background: linear-gradient(90deg, #00c853, #00e676);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  padding: 0 5px;
}

.hero-section h1 .highlight {
  color: #00c853;
  position: relative;
  display: inline-block;
}

.hero-section h1 .highlight:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 200, 83, 0.2);
  z-index: -1;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #e0e0e0;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0.9;
}

a.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 140, 111, 0.25);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

a.hero-cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 167, 111, 0.35);
  color: white !important;
  filter: brightness(1.05);
}

a.hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(42, 140, 111, 0.25);
}

a.hero-cta i {
  margin-right: 10px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

a.hero-cta:hover i {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  a.hero-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }

  a.hero-cta {
    width: 100%;
    max-width: 280px;
  }
}


/* Section Headers — centering only, no decorative underline */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

/* Bonus Grid Layout */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .bonus-grid {
    gap: 2rem;
    padding: 1.25rem;
    margin: 1.5rem 0;
  }

  .bonus-card {
    margin-bottom: 1.5rem;
  }
}

/* Bonus Cards */
.bonus-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bonus-card-header {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-direction: row;
  justify-content: flex-start;
  /* Changed from space-between to group items */
  gap: 20px;
  /* Add gap between logo and stars */
}

@media (max-width: 768px) {
  .bonus-card-header {
    flex-direction: column;
    text-align: center;
    padding: 15px 15px 10px;
  }

  .bonus-rating {
    margin-top: 8px;
    align-items: center;
    /* Center on mobile */
  }
}

.bonus-logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a6a3a35b;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.bonus-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bonus-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align stars to start */
  margin-left: 0;
  /* Remove auto margin to stop pushing right */
}

.rating-stars {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.rating-stars span {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 8px;
}

/* Mobile Layout - Stack logo and rating vertically */
@media (max-width: 767px) {
  .bonus-card-header {
    flex-direction: column;
    text-align: center;
    padding: 15px 15px 10px;
    gap: 12px;
  }

  .bonus-logo {
    margin: 0 auto 12px;
    width: 100%;
    max-width: 120px;
    height: auto;
    padding: 12px;
  }

  .bonus-logo img {
    width: 100%;
    height: auto;
  }

  .bonus-rating {
    margin: 0;
    text-align: center;
    align-items: center;
  }

  .rating-stars {
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
  }

  .rating-stars i {
    font-size: 1.2rem;
  }

  .rating-stars span {
    font-size: 1rem;
  }
}

.bonus-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-tag.welcome {
  background: rgba(27, 77, 62, 0.1);
  color: var(--primary);
}

.bonus-tag.freespins {
  background: rgba(230, 180, 34, 0.1);
  color: #b38a00;
}

.bonus-tag.nodeposit {
  background: rgba(66, 153, 225, 0.1);
  color: #2b6cb0;
}

/* Bonus Card Content */
.bonus-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Consistent gap between all elements */
  flex: 1;
  justify-content: space-between;
}

.bonus-card-content h3 {
  color: var(--primary);
  margin: 0 0 15px 0;
  font-size: 1.5rem;
}

.bonus-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e1e4e8;
}

.detail {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 1.4;
}

.detail span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

.detail i {
  color: var(--primary);
  margin-right: 8px;
  width: 20px;
  text-align: center;
}
/* ============================================
   Card Trust Bar (License + Risk on Casino Cards)
   ============================================ */
.card-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 0 15px;
    padding: 8px 16px;
    background: #f8faf8;
    border-radius: 8px;
    border: 1px solid #e8ede8;
}

.card-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
}

.card-trust-bar__item > i {
    font-size: 13px;
    color: #34a74c;
}

.card-trust-bar__divider {
    width: 1px;
    height: 18px;
    background: #d0d7d0;
    flex-shrink: 0;
}

.card-trust-bar__license {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-trust-bar__license--curacao { color: #b8960a; }
.card-trust-bar__license--mga { color: #2a8c3d; }
.card-trust-bar__license--anjouan,
.card-trust-bar__license--tobique { color: #6c757d; }

.card-trust-bar__risk {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-trust-bar__risk::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-trust-bar__risk--low { color: #2a8c3d; }
.card-trust-bar__risk--low::before { background: #34a74c; }
.card-trust-bar__risk--medium { color: #b8960a; }
.card-trust-bar__risk--medium::before { background: #E6B422; }
.card-trust-bar__risk--high { color: #dc3545; }
.card-trust-bar__risk--high::before { background: #dc3545; }

@media (max-width: 768px) {
    .card-trust-bar {
        margin: 0 0 12px;
        padding: 8px 12px;
    }
    .card-trust-bar__item {
        padding: 0 10px;
    }
}

/* Bonus Features */
.bonus-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* Matches other gaps */
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  align-items: stretch;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.5rem 1rem;
  background: #f0f7f2;
  border: 1px solid #d4e8da;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2a6e3f;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
  flex: 1 0 auto;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile styles */
@media (max-width: 767px) {
  .bonus-features {
    flex-direction: column;
    gap: 12px;
    /* Consistent gap on mobile */
  }

  .feature-tag {
    width: 100%;
    justify-content: flex-start;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
  }

  .feature-tag i {
    margin-right: 10px;
  }
}

.feature-tag:hover {
  background: #e3f2e8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-tag i {
  margin-right: 6px;
  font-size: 0.9em;
  color: #f8c537;
}

.feature-tag {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: rgba(27, 77, 62, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
  border: 1px solid rgba(27, 77, 62, 0.1);
}

.feature-tag i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.feature-tag:hover {
  background: rgba(27, 77, 62, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.bonus-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 20px 0 0;
  padding-top: 15px;
  border-top: 1px dashed #e1e4e8;
}

/* Bonus Actions */
.bonus-card-actions {
  display: flex;
  gap: 15px;
  padding: 0 20px 20px;
  flex-wrap: wrap;
}

.bonus-card-actions .btn {
  flex: 1;
  min-width: 160px;
}

.bonus-card-footer {
  border-top: 1px solid #f0f0f0;
  padding: 0 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.bonus-card.show-terms .bonus-card-footer {
  max-height: 1000px;
  padding: 20px;
}

.terms-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.terms-toggle:hover {
  color: var(--primary-dark);
}

.terms-toggle i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.bonus-card.show-terms .terms-toggle i {
  transform: rotate(180deg);
}

.terms-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e1e4e8;
}

.terms-content ul {
  margin: 0;
  padding-left: 20px;
}

.terms-content li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .bonus-hero h1 {
    font-size: 2rem;
  }

  .bonus-hero p {
    font-size: 1rem;
  }

  .bonus-card-header {
    flex-direction: column;
    text-align: center;
  }

  .bonus-logo {
    margin: 0 auto 15px;
  }

  .bonus-rating {
    margin: 15px auto 0;
    text-align: center;
  }

  .bonus-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0 0 8px 0;
    /* Added 8px bottom padding */
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .bonus-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .bonus-card-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Animation for bonus cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bonus-card {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Add staggered animation for multiple cards */
.bonus-card:nth-child(1) {
  animation-delay: 0.1s;
}

.bonus-card:nth-child(2) {
  animation-delay: 0.2s;
}

.bonus-card:nth-child(3) {
  animation-delay: 0.3s;
}

.bonus-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Scroll to Top Button - Moved to main.css */
/* ============================================
   MERGED FROM: legal.css
   ============================================ */
/* ============================================
   LEGAL PAGES CSS
   Used by: privacy-policy, terms-conditions, responsible-gambling
   ============================================ */

/* --- Layout --- */
.legal-page .section {
    padding: 4rem 0;
}

.legal-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-page .section-title {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page .section-intro {
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* --- Content Block --- */
.content-block {
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    color: var(--color-text);
}

.content-block h1 {
    color: var(--color-primary);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-block h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsible gambling page uses different h2 color */
.responsible-gambling .content-block h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.content-block h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

/* Responsible gambling page uses different h3 color */
.responsible-gambling .content-block h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.content-block p,
.content-block li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.content-block ul,
.content-block ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content-block li {
    margin-bottom: 0.75rem;
    position: relative;
}

.content-block ul li:before {
    content: '•';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: -1.25rem;
}

.content-block ol {
    counter-reset: item;
    list-style-type: none;
}

.content-block ol>li {
    counter-increment: item;
    padding-left: 1.5rem;
    position: relative;
}

.content-block ol>li:before {
    content: counter(item) '.';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.content-block p.last-updated,
.last-updated {
    color: var(--color-text-muted);
    font-style: italic;
    text-align: right;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Terms page has centered last-updated */
.terms-page .last-updated {
    text-align: center;
}

/* --- Info Box (responsible gambling) --- */
.info-box {
    background: rgba(0, 200, 83, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.info-box h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box ul {
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.info-box li:before {
    content: '•';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* --- Feature Grid (responsible gambling) --- */
.legal-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.legal-page .feature-card {
    background: var(--color-bg-lighter);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.legal-page .feature-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

.legal-page .feature-card h4 {
    color: #fff;
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

/* --- Help Resources (responsible gambling) --- */
.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.help-card {
    background: var(--color-bg-lighter);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.help-card h4 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.help-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 1.5rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-number:before {
    content: '📞';
    font-size: 1.2em;
}

/* --- Disclaimer Box (responsible gambling) --- */
.disclaimer-box {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    margin: 3rem 0 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.disclaimer-box h4 {
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* --- Back to Home button --- */
.legal-page .text-center {
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .content-block {
        padding: 1.5rem;
    }

    .legal-page .section-title,
    .content-block h1 {
        font-size: 1.8rem;
    }

    .content-block h2 {
        font-size: 1.4rem;
    }

    .legal-page .feature-grid,
    .help-resources {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MERGED FROM: sitemap.css
   ============================================ */
/* ============================================
   SITEMAP PAGE CSS
   Used by: sitemap.php
   ============================================ */

.sitemap-page body {
    margin: 0;
    padding: 0;
    background: #000000;
    min-height: 100vh;
}

.sitemap-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 40px;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
}

.sitemap-header {
    text-align: center;
    margin: 0 auto 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a1a0a 0%, #000000 100%);
    border-radius: 12px;
    border: 2px solid #34a74c;
    max-width: 1100px;
    position: relative;
    overflow: hidden;
}

.sitemap-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #34a74c 0%, #E6B422 50%, #34a74c 100%);
}

.sitemap-header h1 {
    color: #E6B422;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(230, 180, 34, 0.3);
}

.sitemap-header p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 10px auto 0;
}

.sitemap-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.sitemap-section {
    background: #0a1a0a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #1a341a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.sitemap-section h2 {
    color: #E6B422;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #34a74c;
    display: inline-block;
}

.sitemap-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.sitemap-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links li {
    margin-bottom: 0.5rem;
}

.sitemap-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    background: rgba(52, 167, 76, 0.08);
    border: 1px solid rgba(52, 167, 76, 0.15);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.sitemap-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #E6B422;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sitemap-links a:hover {
    color: #E6B422;
    background: rgba(52, 167, 76, 0.15);
    transform: translateX(8px);
    border-color: #E6B422;
}

.sitemap-links a:hover::before {
    transform: scaleY(1);
}

.sitemap-page .last-updated {
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1a341a;
}

@media (max-width: 1200px) {
    .sitemap-sections {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .sitemap-section {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .sitemap-container {
        padding: 4rem 20px;
    }

    .sitemap-header {
        padding: 2rem 1rem;
        margin-bottom: 2.5rem;
    }

    .sitemap-header h1 {
        font-size: 1.8rem;
    }

    .sitemap-section {
        padding: 1.5rem;
    }

    .sitemap-links a {
        padding: 0.8rem 1rem;
    }
}
