/* ============================================
   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;
}

.site-header .logo-container {
  grid-column: 1;
}

.header-home-link {
  position: static;
  grid-column: 2;
  justify-self: center;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.header-home-link:hover {
  background: rgba(216, 170, 74, .14);
  color: #fff;
}

@media (max-width: 680px) {
  .header-home-link {
    max-width: 160px;
    margin: 0;
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #071225 0%, #102b57 52%, #080d18 100%);
  color: #ffffff;
  padding: 8px 0 16px;
  padding-top: calc(8px + var(--header-height) + var(--disclosure-height, 32px));
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 174, 87, 0.35);
  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(216, 174, 87, 0.22) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(45, 83, 153, 0.28) 0%, transparent 30%);
  z-index: 0;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(216, 174, 87, 0.16);
  border: 1px solid rgba(216, 174, 87, 0.3);
  color: #f0c86c;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  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: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.8rem;
  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, #d8ae57, #f7d985);
  -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: 1rem;
  font-weight: 400;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
  opacity: 0.9;
}

a.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 0 1.5rem;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #09152a !important;
  background: linear-gradient(135deg, #d8ae57, #f2ca70);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(216, 174, 87, 0.24);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

a.hero-cta:hover {
  background: linear-gradient(135deg, #f7d985, #d8ae57);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(216, 174, 87, 0.38);
  color: #09152a !important;
  filter: brightness(1.05);
}

a.hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(216, 174, 87, 0.28);
}

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: 2rem;
  }

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

@media (max-width: 768px) {

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

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

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

  a.hero-cta {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

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

  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;
}

/* Homepage casino ranking cards */
#top-casinos .bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 18px 10px;
  margin: 1.25rem 0 2.5rem;
  counter-reset: casino-rank;
}

#top-casinos .bonus-card {
  counter-increment: casino-rank;
  position: relative;
  display: grid;
  grid-template-columns: 185px minmax(250px, 1fr) minmax(245px, .9fr) 194px;
  grid-template-areas:
    "brand offer features actions"
    "payments payments payments payments";
  align-items: center;
  min-height: 208px;
  height: auto;
  overflow: visible;
  border: 3px solid #173d77;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 61, 119, .14);
  animation: none;
}

#top-casinos .bonus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 61, 119, .2);
}

#top-casinos .bonus-card::before {
  content: counter(casino-rank);
  position: absolute;
  z-index: 3;
  top: -10px;
  left: -13px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #173d77;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .18);
}

#top-casinos .bonus-card:first-child::after {
  content: "\f091  BEDSTE VALG";
  position: absolute;
  top: -16px;
  left: 39px;
  z-index: 2;
  padding: 5px 15px;
  border-radius: 999px;
  background: #d8aa4a;
  color: #fff;
  font-family: "Font Awesome 5 Free", Poppins, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

#top-casinos .bonus-card-header {
  grid-area: brand;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 28px 14px 18px 16px;
  border: 0;
}

#top-casinos .bonus-logo {
  width: 174px;
  height: 100px;
  padding: 13px;
  border-radius: 16px;
  background: #173d77;
  box-shadow: 0 9px 18px rgba(23, 61, 119, .22);
}

#top-casinos .bonus-rating {
  align-items: center;
}

#top-casinos .rating-stars {
  margin: 0;
  color: #d8aa4a;
  gap: 2px;
}

#top-casinos .rating-stars i {
  font-size: 15px;
}

#top-casinos .rating-stars span {
  color: #173d77;
  font-weight: 700;
}

#top-casinos .bonus-card-content {
  display: contents;
}

#top-casinos .bonus-card-content h3 {
  grid-area: offer;
  align-self: center;
  margin: 0;
  padding: 25px 22px;
  color: #173d77;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.18;
  font-weight: 700;
}

#top-casinos .bonus-card-content h3::before {
  content: "Eksklusiv bonus";
  display: block;
  margin-bottom: 5px;
  color: #73809a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

#top-casinos .bonus-details,
#top-casinos .card-trust-bar,
#top-casinos .bonus-description {
  display: none;
}

#top-casinos .bonus-features {
  grid-area: features;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 24px 14px;
}

#top-casinos .feature-tag {
  min-height: 0;
  padding: 0;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #465776;
  font-size: 16px;
  font-weight: 600;
  white-space: normal;
  text-align: left;
  overflow: visible;
}

#top-casinos .feature-tag:nth-child(n+4) {
  display: none;
}

#top-casinos .feature-tag i {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  border-radius: 50%;
  background: #173d77;
  color: #fff;
  font-size: 10px;
}

#top-casinos .feature-tag i::before {
  content: "\f00c";
}

#top-casinos .feature-tag:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

#top-casinos .bonus-card-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  padding: 25px 13px 18px;
}

#top-casinos .bonus-card-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  padding: 10px 12px;
  justify-content: center;
  border: 2px solid #173d77;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
}

#top-casinos .bonus-card-actions .btn i {
  display: none;
}

#top-casinos .bonus-card-actions .btn-primary {
  border-color: transparent;
  background: linear-gradient(180deg, #e0b65a, #c69334);
  box-shadow: 0 7px 15px rgba(185, 133, 38, .25);
  color: #102e5d;
}

#top-casinos .bonus-card-actions .btn-primary::after { content: "Få bonus"; }
#top-casinos .bonus-card-actions .btn-primary { font-size: 0; }
#top-casinos .bonus-card-actions .btn-primary::after { font-size: 14px; }

#top-casinos .bonus-card-actions .btn-outline {
  background: #fff;
  color: #173d77;
}

#top-casinos .bonus-card-actions .btn-outline::after { content: "Læs anmeldelse"; }
#top-casinos .bonus-card-actions .btn-outline { font-size: 0; }
#top-casinos .bonus-card-actions .btn-outline::after { font-size: 14px; }

#top-casinos .bonus-card-footer {
  grid-area: payments;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: 0;
  max-height: none;
  padding: 0;
  overflow: visible;
  border-top: 0;
}

#top-casinos .bonus-card-footer::before {
  display: none;
  content: none;
}

#top-casinos .terms-toggle {
  position: absolute;
  right: 33px;
  top: -50px;
  padding: 8px 0;
  color: #8290a9;
  font-size: 0;
}

#top-casinos .terms-toggle::before {
  content: "Mere info";
  font-size: 14px;
}

#top-casinos .terms-content {
  display: none;
}

@media (max-width: 980px) {
  #top-casinos .bonus-card {
    grid-template-columns: 175px minmax(230px, 1fr) 180px;
    grid-template-areas:
      "brand offer actions"
      "features features features"
      "payments payments payments";
  }

  #top-casinos .bonus-features {
    flex-direction: row;
    flex-wrap: wrap;
    border-top: 1px solid #ececf4;
  }
}

@media (max-width: 680px) {
  #top-casinos .bonus-grid {
    padding: 18px 2px;
  }

  #top-casinos .bonus-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "offer"
      "features"
      "actions"
      "payments";
  }

  #top-casinos .bonus-card-header {
    padding-bottom: 8px;
  }

  #top-casinos .bonus-logo {
    width: min(210px, 80%);
  }

  #top-casinos .bonus-card-content h3 {
    padding: 12px 22px 18px;
    text-align: center;
  }

  #top-casinos .bonus-features {
    flex-direction: column;
    padding: 18px 24px;
  }

  #top-casinos .bonus-card-actions {
    padding: 8px 22px 42px;
  }

  #top-casinos .terms-toggle {
    top: -40px;
    right: 0;
    left: 0;
  }
}

/* Long-form guide below the homepage casino cards */
.page-toc {
  margin: 18px auto 48px;
  padding: 0 20px;
}

.page-toc__heading {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px 22px;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(135deg, #102e5d, #1c4b8d);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.page-toc__heading i {
  color: #d8aa4a;
}

.page-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 14px 18px 18px;
  border: 1px solid #dfe5ee;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 61, 119, .1);
  counter-reset: toc-item;
  list-style: none;
}

.page-toc__list li {
  counter-increment: toc-item;
  border-bottom: 1px solid #edf0f5;
}

.page-toc__list li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.page-toc__list a {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  color: #40516c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.page-toc__list a::before {
  content: counter(toc-item, decimal-leading-zero);
  flex: 0 0 25px;
  color: #b28430;
  font-size: 12px;
  font-weight: 800;
}

.page-toc__list a:hover {
  transform: translateX(3px);
  background: #f3f6fb;
  color: #173d77;
}

.casino-guide h2[id] {
  scroll-margin-top: calc(var(--header-height, 80px) + 24px);
}

.casino-guide {
  padding: 62px 20px 80px;
  background: linear-gradient(180deg, #f6f8fc 0, #fff 220px);
  color: #27364f;
}

.casino-guide__inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.casino-guide h1 {
  position: relative;
  margin: 0 0 24px;
  padding: 36px 42px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #102e5d, #173d77);
  box-shadow: 0 14px 34px rgba(23, 61, 119, .2);
  color: #fff;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.casino-guide h1::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -85px;
  width: 230px;
  height: 230px;
  border: 38px solid rgba(216, 170, 74, .18);
  border-radius: 50%;
}

.casino-guide h1 + p {
  margin: 0 0 50px;
  padding: 22px 26px;
  border-left: 5px solid #d8aa4a;
  border-radius: 0 12px 12px 0;
  background: #fff;
  box-shadow: 0 7px 22px rgba(23, 61, 119, .08);
  color: #40516c;
  font-size: 18px;
  line-height: 1.75;
}

.casino-guide h2 {
  margin: 58px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e4e9f1;
  color: #173d77;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -.015em;
}

.casino-guide h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  margin-bottom: -15px;
  transform: translateY(13px);
  border-radius: 3px;
  background: #d8aa4a;
}

.casino-guide h3 {
  margin: 38px 0 16px;
  color: #173d77;
  font-size: 22px;
  line-height: 1.35;
}

.license-types-visual {
  width: min(100%, 820px);
  margin: 22px auto 30px;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 74, .55);
  border-radius: 16px;
  background: #102e5d;
  box-shadow: 0 12px 30px rgba(23, 61, 119, .18);
}

.guide-section-visual {
  width: min(100%, 820px);
  margin: 48px auto 34px;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 74, .55);
  border-radius: 16px;
  background: #102e5d;
  box-shadow: 0 12px 30px rgba(23, 61, 119, .18);
}

.guide-section-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guide-image-cta {
  display: flex;
  justify-content: center;
  margin: -12px 0 42px;
}

.casino-guide .guide-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 13px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e0b65a, #c69334);
  box-shadow: 0 8px 20px rgba(185, 133, 38, .25);
  color: #102e5d;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.casino-guide .guide-play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(185, 133, 38, .34);
  color: #102e5d;
  filter: brightness(1.05);
}

.license-types-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.casino-guide p {
  margin: 0 0 18px;
  color: #40516c;
  font-size: 16px;
  line-height: 1.75;
}

.casino-guide a {
  color: #173d77;
  font-weight: 700;
  text-decoration-color: #d8aa4a;
  text-underline-offset: 3px;
}

.casino-guide ul,
.casino-guide ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.casino-guide li {
  position: relative;
  min-height: 50px;
  padding: 14px 18px 14px 54px;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(23, 61, 119, .05);
}

.casino-guide ul > li::before {
  content: "\f00c";
  position: absolute;
  top: 16px;
  left: 18px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #173d77;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  font-weight: 900;
}

.casino-guide ol > li {
  counter-increment: guide-step;
}

.casino-guide ol > li::before {
  content: counter(guide-step);
  position: absolute;
  top: 13px;
  left: 15px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8aa4a;
  color: #102e5d;
  font-size: 13px;
  font-weight: 800;
}

.casino-guide li p {
  margin: 0;
}

.casino-guide table {
  display: table;
  width: 100%;
  margin: 22px 0 32px;
  border: 1px solid #dfe5ee;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 61, 119, .08);
  overflow: hidden;
}

.casino-guide thead {
  background: linear-gradient(135deg, #102e5d, #1c4b8d);
  color: #fff;
}

.casino-guide tr {
  display: table-row;
}

.casino-guide td {
  padding: 16px 18px;
  border-right: 1px solid #e5e9f0;
  border-bottom: 1px solid #e5e9f0;
  font-size: 14px;
  line-height: 1.45;
  vertical-align: middle;
}

.casino-guide thead td {
  border-color: rgba(255, 255, 255, .16);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .015em;
}

.casino-guide tbody tr:nth-child(even) {
  background: #f6f8fc;
}

.casino-guide tbody tr {
  transition: background-color .2s ease;
}

.casino-guide tbody tr:hover {
  background: #edf3fb;
}

.casino-guide tbody td:first-child {
  color: #173d77;
  font-weight: 700;
}

.casino-guide tbody td:last-child {
  font-weight: 600;
}

/* Homepage FAQ cards */
.casino-guide h2[data-path-to-node="58"] {
  margin-top: 72px;
  margin-bottom: 30px;
}

.casino-guide h2[data-path-to-node="58"] + p[data-path-to-node="59"],
.casino-guide p[data-path-to-node="59"] + p[data-path-to-node="60"],
.casino-guide p[data-path-to-node="60"] + p[data-path-to-node="61"],
.casino-guide p[data-path-to-node="61"] + p[data-path-to-node="62"],
.casino-guide p[data-path-to-node="62"] + p[data-path-to-node="63"] {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 20px 58px 18px 24px;
  border: 1px solid #dce4ef;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #fff;
  color: #173d77;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(23, 61, 119, .08);
}

.casino-guide h2[data-path-to-node="58"] + p[data-path-to-node="59"]::after,
.casino-guide p[data-path-to-node="59"] + p[data-path-to-node="60"]::after,
.casino-guide p[data-path-to-node="60"] + p[data-path-to-node="61"]::after,
.casino-guide p[data-path-to-node="61"] + p[data-path-to-node="62"]::after,
.casino-guide p[data-path-to-node="62"] + p[data-path-to-node="63"]::after {
  content: "?";
  position: absolute;
  top: 17px;
  right: 20px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8aa4a;
  color: #102e5d;
  font-weight: 800;
}

.casino-guide p[data-path-to-node="59"] + p[data-path-to-node="59"],
.casino-guide p[data-path-to-node="60"] + p[data-path-to-node="60"],
.casino-guide p[data-path-to-node="61"] + p[data-path-to-node="61"],
.casino-guide p[data-path-to-node="62"] + p[data-path-to-node="62"],
.casino-guide p[data-path-to-node="63"] + p[data-path-to-node="63"] {
  margin: 0 0 18px;
  padding: 4px 58px 21px 24px;
  border: 1px solid #dce4ef;
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 61, 119, .08);
  color: #4a5b73;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .casino-guide h2[data-path-to-node="58"] + p[data-path-to-node="59"],
  .casino-guide p[data-path-to-node="59"] + p[data-path-to-node="60"],
  .casino-guide p[data-path-to-node="60"] + p[data-path-to-node="61"],
  .casino-guide p[data-path-to-node="61"] + p[data-path-to-node="62"],
  .casino-guide p[data-path-to-node="62"] + p[data-path-to-node="63"] {
    padding: 18px 52px 15px 18px;
    font-size: 16px;
  }

  .casino-guide p[data-path-to-node="59"] + p[data-path-to-node="59"],
  .casino-guide p[data-path-to-node="60"] + p[data-path-to-node="60"],
  .casino-guide p[data-path-to-node="61"] + p[data-path-to-node="61"],
  .casino-guide p[data-path-to-node="62"] + p[data-path-to-node="62"],
  .casino-guide p[data-path-to-node="63"] + p[data-path-to-node="63"] {
    padding: 3px 18px 18px;
  }
}

.casino-guide tr:last-child td {
  border-bottom: 0;
}

.casino-guide td:last-child {
  border-right: 0;
}

@media (max-width: 680px) {
  .page-toc {
    margin: 8px auto 36px;
    padding: 0 14px;
  }

  .page-toc__list {
    grid-template-columns: 1fr;
    padding: 10px 12px 14px;
  }

  .page-toc__list li:nth-last-child(2) {
    border-bottom: 1px solid #edf0f5;
  }

  .page-toc__list a {
    padding: 11px 9px;
  }

  .casino-guide {
    padding: 38px 14px 55px;
  }

  .casino-guide h1 {
    padding: 28px 22px;
    border-radius: 15px;
  }

  .casino-guide h1 + p {
    padding: 18px;
    font-size: 16px;
  }

  .casino-guide h2 {
    margin-top: 42px;
  }

  .casino-guide li {
    padding-right: 14px;
  }

  .casino-guide td {
    min-width: 125px;
    padding: 13px 14px;
  }

  .casino-guide table {
    display: block;
    overflow-x: auto;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .casino-guide thead,
  .casino-guide tbody {
    display: table-row-group;
  }

  .casino-guide tr {
    display: table-row;
  }
}

.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
   ============================================ */

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

.sitemap-page .main-content {
    background: #000000;
    margin-top: 0;
    padding-top: calc(var(--header-height, 80px) + var(--disclosure-height, 32px));
}

.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: 1.5rem 16px 3rem;
    }

    .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;
    }
}
