/*
Theme Name: Betting Worlds
Theme URI: https://bettingworlds.com
Description: International sports betting guide with global coverage and region-specific sportsbook reviews.
Version: 1.0.0
Author: Betting Worlds
Author URI: https://bettingworlds.com
Text Domain: bettingworlds
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ========== CSS Variables ========== */
:root {
    --bw-navy: #0a1628;
    --bw-navy-light: #112240;
    --bw-navy-mid: #1a2d4a;
    --bw-teal: #00b4d8;
    --bw-teal-dark: #0096b7;
    --bw-teal-glow: rgba(0, 180, 216, 0.3);
    --bw-white: #ffffff;
    --bw-gray-100: #f0f4f8;
    --bw-gray-200: #e2e8f0;
    --bw-gray-300: #cbd5e1;
    --bw-gray-400: #94a3b8;
    --bw-gray-500: #64748b;
    --bw-gold: #f59e0b;
    --bw-green: #10b981;
    --bw-red: #ef4444;
    --bw-radius: 12px;
    --bw-radius-sm: 8px;
    --bw-radius-lg: 20px;
    --bw-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    --bw-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --bw-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bw-font-heading: 'Space Grotesk', sans-serif;
    --bw-font-body: 'DM Sans', sans-serif;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--bw-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bw-navy);
    background: var(--bw-gray-100);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bw-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bw-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

a { color: var(--bw-teal); text-decoration: none; transition: var(--bw-transition); }
a:hover { color: var(--bw-teal-dark); }

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

.bw-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Header ========== */
.bw-header {
    background: var(--bw-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 180, 216, 0.15);
}

.bw-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
    height: 72px;
}

.bw-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.bw-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bw-teal), #0077b6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bw-logo-icon::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
}

.bw-logo-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 28px;
    background: rgba(255,255,255,0.4);
}

.bw-logo-icon span {
    position: absolute;
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.4);
}

.bw-logo-text {
    font-family: var(--bw-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bw-white);
    letter-spacing: 2px;
}

.bw-nav { display: flex; align-items: center; gap: 8px; }

.bw-nav a {
    color: var(--bw-gray-300);
    font-family: var(--bw-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--bw-radius-sm);
    transition: var(--bw-transition);
    position: relative;
}

.bw-nav a:hover,
.bw-nav a.active {
    color: var(--bw-white);
    background: rgba(0, 180, 216, 0.1);
}

.bw-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--bw-teal);
    border-radius: 2px;
}

.bw-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bw-teal), #0077b6);
    color: var(--bw-white) !important;
    font-family: var(--bw-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--bw-transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.bw-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--bw-teal-glow);
    color: var(--bw-white) !important;
}

.bw-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.bw-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bw-white);
    margin: 5px 0;
    transition: var(--bw-transition);
}

/* ========== Hero / World Map Section ========== */
.bw-hero {
    background: linear-gradient(160deg, var(--bw-navy) 0%, var(--bw-navy-light) 50%, #0a2a3f 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.bw-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(0,180,216,0.08), transparent),
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(0,119,182,0.06), transparent);
    pointer-events: none;
}

.bw-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bw-hero h1 {
    color: var(--bw-white);
    margin-bottom: 20px;
}

.bw-hero h1 span {
    background: linear-gradient(135deg, var(--bw-teal), #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bw-hero p {
    color: var(--bw-gray-400);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

/* World Map */
.bw-world-map {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 40px;
}

.bw-world-map svg {
    width: 100%;
    height: auto;
    opacity: 0.2;
}

.bw-region-pins {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.bw-region-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--bw-transition);
}

.bw-region-pin:hover { transform: scale(1.15); }

.bw-region-pin .pin-dot {
    width: 14px;
    height: 14px;
    background: var(--bw-teal);
    border-radius: 50%;
    border: 2px solid var(--bw-white);
    box-shadow: 0 0 20px var(--bw-teal-glow);
    animation: bw-pulse 2s ease-in-out infinite;
}

.bw-region-pin .pin-label {
    color: var(--bw-white);
    font-family: var(--bw-font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@keyframes bw-pulse {
    0%, 100% { box-shadow: 0 0 10px var(--bw-teal-glow); }
    50% { box-shadow: 0 0 25px var(--bw-teal-glow), 0 0 50px rgba(0,180,216,0.15); }
}

/* ========== Region Tabs ========== */
.bw-region-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 0 20px;
}

.bw-region-tab {
    background: var(--bw-white);
    border: 2px solid var(--bw-gray-200);
    color: var(--bw-gray-500);
    font-family: var(--bw-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--bw-transition);
}

.bw-region-tab:hover {
    border-color: var(--bw-teal);
    color: var(--bw-teal);
}

.bw-region-tab.active {
    background: var(--bw-teal);
    border-color: var(--bw-teal);
    color: var(--bw-white);
}

/* ========== Sportsbook Cards ========== */
.bw-sportsbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.bw-sportsbook-card {
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    border: 1px solid var(--bw-gray-200);
    padding: 28px;
    transition: var(--bw-transition);
    position: relative;
    overflow: hidden;
}

.bw-sportsbook-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bw-shadow-lg);
    border-color: var(--bw-teal);
}

.bw-sportsbook-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bw-teal), #0077b6);
    opacity: 0;
    transition: var(--bw-transition);
}

.bw-sportsbook-card:hover::before { opacity: 1; }

.bw-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bw-card-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bw-card-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--bw-radius-sm);
    background: var(--bw-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bw-navy);
}

.bw-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--bw-radius-sm);
}

.bw-card-name {
    font-family: var(--bw-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bw-navy);
}

.bw-card-regions {
    display: flex;
    gap: 4px;
}

.bw-card-region-flag {
    font-size: 1.2rem;
}

.bw-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--bw-font-heading);
    font-weight: 700;
    color: var(--bw-navy);
}

.bw-card-rating .stars {
    color: var(--bw-gold);
    font-size: 0.9rem;
}

.bw-card-bonus {
    background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(0,119,182,0.05));
    border: 1px solid rgba(0,180,216,0.2);
    border-radius: var(--bw-radius-sm);
    padding: 12px 16px;
    margin: 16px 0;
    text-align: center;
}

.bw-card-bonus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bw-gray-500);
    margin-bottom: 4px;
}

.bw-card-bonus-value {
    font-family: var(--bw-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bw-teal);
}

.bw-card-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.bw-card-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--bw-gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bw-card-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--bw-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.bw-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.bw-card-actions .bw-btn-primary {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, var(--bw-teal), #0077b6);
    color: var(--bw-white);
    font-family: var(--bw-font-heading);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--bw-radius-sm);
    font-size: 0.9rem;
    transition: var(--bw-transition);
}

.bw-card-actions .bw-btn-primary:hover {
    box-shadow: 0 4px 16px var(--bw-teal-glow);
    color: var(--bw-white);
}

.bw-card-actions .bw-btn-secondary {
    padding: 12px 20px;
    border: 1px solid var(--bw-gray-200);
    color: var(--bw-gray-500);
    font-size: 0.9rem;
    border-radius: var(--bw-radius-sm);
    transition: var(--bw-transition);
}

.bw-card-actions .bw-btn-secondary:hover {
    border-color: var(--bw-teal);
    color: var(--bw-teal);
}

/* ========== Odds Comparison ========== */
.bw-odds-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    overflow: hidden;
    box-shadow: var(--bw-shadow);
}

.bw-odds-table thead { background: var(--bw-navy); }

.bw-odds-table th {
    color: var(--bw-white);
    font-family: var(--bw-font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 16px;
    text-align: left;
}

.bw-odds-table td {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--bw-gray-200);
}

.bw-odds-table tr:last-child td { border-bottom: none; }

.bw-odds-table .best-odds {
    color: var(--bw-green);
    font-weight: 700;
    font-family: var(--bw-font-heading);
}

/* ========== Section Styles ========== */
.bw-section {
    padding: 80px 0;
}

.bw-section-dark {
    background: var(--bw-navy);
    color: var(--bw-white);
}

.bw-section-dark h2,
.bw-section-dark h3 { color: var(--bw-white); }

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

.bw-section-header h2 { margin-bottom: 12px; }

.bw-section-header p {
    color: var(--bw-gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bw-section-dark .bw-section-header p { color: var(--bw-gray-400); }

/* ========== Sport Guides Grid ========== */
.bw-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.bw-sport-card {
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--bw-gray-200);
    transition: var(--bw-transition);
}

.bw-sport-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bw-shadow);
    border-color: var(--bw-teal);
}

.bw-sport-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.bw-sport-card h4 {
    font-family: var(--bw-font-heading);
    font-size: 1rem;
    margin-bottom: 6px;
}

.bw-sport-card p {
    color: var(--bw-gray-500);
    font-size: 0.85rem;
}

/* ========== Articles ========== */
.bw-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.bw-article-card {
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    overflow: hidden;
    border: 1px solid var(--bw-gray-200);
    transition: var(--bw-transition);
}

.bw-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bw-shadow);
}

.bw-article-thumb {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bw-navy), var(--bw-navy-light));
    overflow: hidden;
}

.bw-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bw-article-body {
    padding: 24px;
}

.bw-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--bw-gray-500);
}

.bw-article-category {
    background: rgba(0,180,216,0.1);
    color: var(--bw-teal);
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.bw-article-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bw-article-body h3 a { color: var(--bw-navy); }
.bw-article-body h3 a:hover { color: var(--bw-teal); }

.bw-article-excerpt {
    color: var(--bw-gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== CTA Box ========== */
.bw-cta-box {
    background: linear-gradient(135deg, var(--bw-navy), var(--bw-navy-light));
    border-radius: var(--bw-radius-lg);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bw-cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--bw-teal-glow), transparent 70%);
    pointer-events: none;
}

.bw-cta-box h3 {
    color: var(--bw-white);
    font-size: 1.8rem;
    margin-bottom: 12px;
    position: relative;
}

.bw-cta-box p {
    color: var(--bw-gray-400);
    margin-bottom: 24px;
    position: relative;
}

/* ========== Rating Badge ========== */
.bw-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bw-navy);
    color: var(--bw-white);
    font-family: var(--bw-font-heading);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.bw-rating .stars { color: var(--bw-gold); }

/* ========== Tool Cards ========== */
.bw-tool-card {
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    border: 1px solid var(--bw-gray-200);
    padding: 32px;
    transition: var(--bw-transition);
}

.bw-tool-card:hover {
    box-shadow: var(--bw-shadow);
    border-color: var(--bw-teal);
}

.bw-tool-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(0,119,182,0.05));
    border-radius: var(--bw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* ========== Footer ========== */
.bw-footer {
    background: var(--bw-navy);
    color: var(--bw-gray-400);
    padding: 60px 0 0;
}

.bw-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bw-footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.bw-footer h4 {
    color: var(--bw-white);
    font-family: var(--bw-font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.bw-footer-links {
    list-style: none;
    padding: 0;
}

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

.bw-footer-links a {
    color: var(--bw-gray-400);
    font-size: 0.9rem;
    transition: var(--bw-transition);
}

.bw-footer-links a:hover { color: var(--bw-teal); }

.bw-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.85rem;
}

.bw-footer-disclaimer {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--bw-radius-sm);
    padding: 20px;
    margin: 30px 0;
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--bw-gray-500);
}

/* ========== Single Post ========== */
.bw-single-header {
    background: linear-gradient(160deg, var(--bw-navy), var(--bw-navy-light));
    padding: 60px 0 40px;
}

.bw-single-header h1 { color: var(--bw-white); font-size: 2.2rem; }

.bw-single-content {
    max-width: 800px;
    margin: -40px auto 60px;
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    padding: 48px;
    box-shadow: var(--bw-shadow);
    position: relative;
    z-index: 2;
}

.bw-single-content p { margin-bottom: 1.2em; }
.bw-single-content h2 { margin: 2em 0 0.8em; }
.bw-single-content h3 { margin: 1.5em 0 0.6em; }

.bw-single-content ul, .bw-single-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.bw-single-content li { margin-bottom: 0.5em; }

/* ========== Sidebar ========== */
.bw-content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bw-sidebar-widget {
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    border: 1px solid var(--bw-gray-200);
    padding: 24px;
    margin-bottom: 24px;
}

.bw-sidebar-widget h4 {
    font-family: var(--bw-font-heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bw-gray-200);
}

/* ========== 404 ========== */
.bw-404 {
    text-align: center;
    padding: 120px 20px;
}

.bw-404 h1 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--bw-teal), #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Comparison Table ========== */
.bw-comparison-table {
    width: 100%;
    background: var(--bw-white);
    border-radius: var(--bw-radius);
    overflow: hidden;
    box-shadow: var(--bw-shadow);
}

.bw-comparison-table th {
    background: var(--bw-navy);
    color: var(--bw-white);
    font-family: var(--bw-font-heading);
    padding: 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bw-comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--bw-gray-200);
    font-size: 0.95rem;
}

.bw-comparison-table tr:nth-child(even) {
    background: var(--bw-gray-100);
}

/* ========== Pagination ========== */
.bw-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.bw-pagination a, .bw-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--bw-radius-sm);
    font-family: var(--bw-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--bw-transition);
}

.bw-pagination a {
    background: var(--bw-white);
    color: var(--bw-navy);
    border: 1px solid var(--bw-gray-200);
}

.bw-pagination a:hover {
    border-color: var(--bw-teal);
    color: var(--bw-teal);
}

.bw-pagination .current {
    background: var(--bw-teal);
    color: var(--bw-white);
    border: none;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .bw-content-layout {
        grid-template-columns: 1fr;
    }
    .bw-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .bw-nav { display: none; }
    .bw-mobile-toggle { display: block; }

    .bw-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bw-navy);
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .bw-hero { padding: 60px 0; }
    .bw-section { padding: 60px 0; }
    .bw-sportsbook-grid { grid-template-columns: 1fr; }
    .bw-footer-grid { grid-template-columns: 1fr; }
    .bw-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .bw-single-content { padding: 24px; margin: -20px 10px 40px; }
    .bw-cta-box { padding: 32px 20px; }
}
