/* ===== FINAL HEADER STYLING ===== */
/* Hide Start betting button on mobile */
    
header.site-header {
    display: block !important;
    background: 
        linear-gradient(
            to right,
            rgba(0, 0, 0, 1) 0%,                 /* pure black */
            rgba(0, 0, 0, 0.98) 30%,             /* still black */
            rgba(123, 224, 43, 0.12) 60%,        /* faint #7be02b glow */
            rgba(47, 92, 15, 0.60) 90%           /* dark green tone */
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.70)
        );
    backdrop-filter: blur(14px);
    padding: 2px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 99999;     /* keep entire header on top */
}

.site-header .header-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 240px 1fr 240px;
    align-items: center;
    min-height: 60px;
    padding: 6px 20px;
}

/* --- Logo (already fixed) --- */
.site-header .logo a {
    display: flex !important;
    align-items: center !important;
}

.site-header #logo {
   /* height: 38px;
    margin-right: 6px;*/
}

.site-header #logo-sport {
    /*height: 24px;*/
}

/* --- Navigation Menu --- */

.site-header .main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header .primary-menu {
    list-style: none;
    display: flex;
    gap: 26px;              /* matches screenshot spacing */
    margin: 0;
    padding: 0;
}

.site-header .primary-menu a {
    color: #cfcfcf;         /* softer gray like image */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.site-header .primary-menu a:hover {
    color: #ffffff;
}

/* --- Right Buttons --- */

.site-header .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

/* Icon button */
.site-header .icon-btn {
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    padding: 7px 12px;
    font-size: 15px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    text-decoration: none;
}

/* CTA button */
.site-header .cta-btn {
    border-radius: 50px;
    border: 1px solid #ff6b00;
    background: #000;
    color: #fff;
    padding: 9px 22px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.site-header .cta-btn:hover {
    box-shadow: 0 0 10px rgba(255,107,0,0.6);
}

/* ===== RESPONSIVE MENU ===== */

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid #444;
    color: #fff;
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
}

/* Tablet & Mobile */
@media (max-width: 900px) {

    .site-header .header-container {
        grid-template-columns: 1fr auto;
    }

    /* HIDE MENU BY DEFAULT ON MOBILE */
    .site-header .main-nav {
        display: none !important;      /* force hide */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.96);
        z-index: 999999;
        padding: 20px 0;
    }

    /* SHOW ONLY WHEN ACTIVE */
    .site-header .main-nav.active {
        display: block !important;
    }

    .primary-menu {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .primary-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
	/* Hide Start betting button on mobile */
    .site-header .cta-btn {
        display: none !important;
    }
}

/* Keep content under menu */
.wp-page-wrapper {
    position: relative;
    z-index: 1;
}

/* ===== BLOG & PRESS STYLING ===== */

.content-wrapper {
    padding: 40px 20px;
    min-height: 70vh;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.post-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
}

.post-card:hover {
    background: rgba(255,255,255,0.08);
}

.post-card h2 {
    margin: 0 0 10px;
}

.post-card h2 a {
    color: #fff;
    text-decoration: none;
}

.post-meta {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
}

.post-excerpt {
    color: #ddd;
    margin-bottom: 12px;
}

.read-more {
    color: #7be02b;
    text-decoration: none;
    font-weight: 500;
}

/* ===== BLOG SINGLE PAGE DESIGN ===== */
/*
.blog-single-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}
*/
/*.blog-single {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 30px;
    margin-top: 20px;
}*/

.blog-single-header {
    margin-bottom: 20px;
}

.blog-single-title {
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-meta {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.blog-featured-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

.blog-single-content {
    font-size: 17px;
    line-height: 1.85;
    color: #eaeaea;
}

.blog-single-content p {
    margin-bottom: 18px;
}

.blog-single-content h2,
.blog-single-content h3 {
    margin-top: 28px;
    margin-bottom: 14px;
    color: #7be02b;
}

.blog-single-content ul,
.blog-single-content ol {
    margin-bottom: 20px;
    padding-left: 22px;
}

.blog-single-content a {
    color: #7be02b;
    text-decoration: underline;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 14px;
}

.blog-navigation a {
    color: #7be02b;
}

.back-link {
    display: inline-block;
    margin-top: 25px;
    color: #7be02b;
    text-decoration: none;
}

/* Mobile tweaks */
@media (max-width: 768px) {

    .blog-single-title {
        font-size: 26px;
    }

    .blog-single {
        padding: 18px;
    }
}

