/* Layout: Header, Hero, Content, Footer */

/* HEADER */
.site-header {
    background: linear-gradient(135deg, #003580 0%, #0066CC 100%);
    /* Logo gradient colors */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00D4FF;
    /* Cyan accent border */
    box-shadow: 0 4px 20px rgba(0, 53, 128, 0.4);
    /* Navy shadow with glow */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.main-navigation a:hover {
    background: rgba(0, 212, 255, 0.15);
    /* Cyan hover background */
    color: #00D4FF;
    /* Cyan text */
    transform: translateY(-2px);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    /* Gold gradient underline */
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.main-navigation a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
        padding: 12px 20px;
    }

    .main-navigation {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        /* Space for scrollbar if visible */
    }

    .main-navigation ul {
        width: max-content;
        padding: 0 20px;
        gap: 8px;
        justify-content: center;
    }

    .main-navigation a {
        font-size: 14px;
        white-space: nowrap;
        padding: 8px 16px;
        background: rgba(0, 212, 255, 0.1);
        /* Cyan tint */
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 20px;
    }

    .main-navigation a:hover {
        background: rgba(0, 212, 255, 0.25);
        border-color: #00D4FF;
        transform: translateY(0);
        /* Disable vertical movement on mobile */
    }

    .site-logo img {
        height: 50px;
    }
}

/* HIDE NAV ON MOBILE */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .header-inner {
        flex-direction: row;
        justify-content: center;
        padding: 10px 20px;
    }

    .site-logo img {
        height: 45px;
    }
}

/* HERO SECTION - COMPACT & HIGH PERFORMANCE */
.hero {
    background: linear-gradient(135deg, var(--color-hero-start) 0%, var(--color-hero-end) 100%);
    padding: 60px 0 50px;
    /* Reduced from 120px/80px */
    color: #fff;
    text-align: center;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.5);
}

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

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb li:last-child span {
    color: rgba(255, 255, 255, 0.6);
}

.hero h1 {
    font-size: 2.75rem;
    /* Reduced from 3.5rem */
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Hero Header Row - Compact Layout */
.hero-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Expert Attribution - Compact Version */
.expert-attribution-compact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

.expert-attribution-compact strong {
    font-weight: 700;
    color: #fff;
}

/* Hero Trust Badges - Compact */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 14px auto 18px;
}

.hero-trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.hero-trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Enhanced Description - Compact */
.hero-description {
    max-width: 680px;
    margin: 16px auto;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.hero-description strong {
    font-weight: 700;
    color: #fff;
}

/* Statistics Badges - Compact */
.hero-statistics {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 20px auto 16px;
    max-width: 600px;
}

.stat-item {
    text-align: center;
    min-width: 85px;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Affiliate Disclaimer - Compact */
.affiliate-disclaimer {
    max-width: 650px;
    margin: 16px auto 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    text-align: center;
}

.hero p {
    max-width: 650px;
    /* Tighter width */
    margin: 0 auto 30px;
    /* Reduced margin */
    font-size: 1.05rem;
    /* Slightly smaller */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hero {
        padding: 35px 0 25px;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .hero-header-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .expert-attribution-compact {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
    }

    .hero-trust-badges {
        gap: 6px;
    }

    .hero-trust-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

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

    .hero-statistics {
        gap: 12px;
    }

    .stat-item {
        min-width: 70px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .affiliate-disclaimer {
        font-size: 0.65rem;
        padding: 8px 12px;
    }
}

/* CONTENT AREAS */
.site-content {
    padding: 60px 0;
    background: var(--color-body-bg);
}

.content-area {
    max-width: 900px;
    margin: 0 auto;
}

.section {
    margin-bottom: 60px;
}

/* Dark Section (Methodology) */
.section-gray {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 60px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
}

.section-gray h2,
.section-gray p {
    color: #fff;
}

/* FOOTER - MODERN REDESIGN */
.site-footer {
    background: linear-gradient(180deg, #0a0f1e 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 50px 0 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer About Column */
.footer-about {
    padding-right: 20px;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.3;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-badge {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Footer Headings */
.footer-heading {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(3px);
}

/* Responsible Gaming Column */
.footer-responsible {
    background: rgba(239, 68, 68, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.footer-rg-notice {
    color: #fca5a5;
    font-size: 0.85rem;
    margin: 0 0 15px;
    font-weight: 500;
}

.footer-rg-links a {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-rg-links a:hover {
    color: #fca5a5;
}

/* Disclaimer Section */
.footer-disclaimer {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-disclaimer strong {
    color: #cbd5e1;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #00d4ff;
}

.footer-bottom-links .separator {
    color: #475569;
}

/* Footer Responsive Design */
@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-responsible {
        padding: 15px;
    }

    .footer-disclaimer {
        padding: 15px 20px;
    }

    .footer-disclaimer p {
        font-size: 0.75rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .compliance-links {
        flex-direction: column;
        gap: 10px;
    }
}