/* --- 1. VARIABLES & RESET --- */
:root {
    /* Brand Palette */
    --brand-blue: #2669A4;        /* "CRIC" Text */
    --brand-orange: #F38531;      /* "READERS", Bat, Ball */
    --brand-dark-blue: #243F5B;   /* Outlines & Shading */
    
    /* Theme Colors */
    --bg-body: #0b1116;           /* Very dark blue-black tint */
    --bg-card: #121a21;           /* Slightly lighter dark blue tint */
    --bg-nav: #000000;            /* Pure Black for Nav & Footer */
    
    --text-main: #f5f5f5;
    --text-muted: #b0c4d6;        /* Blue-tinted grey text */
    
    --border-color: #243F5B;      /* Using your dark blue for borders */
    
    --font-head: 'Teko', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --max-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* GLOBAL HOVER: Links turn Orange */
a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: var(--brand-orange); } 

ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* --- 2. HEADER & NAVIGATION --- */
header {
    background-color: var(--bg-nav);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    height: 80px;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO STYLES --- */
.header-brand {
    display: flex; align-items: center; height: 100%;
}
.header-brand img {
    height: auto; /* Maximized Size */
    width: 250px;
    object-fit: contain;
    padding-top: 2px;
}

/* --- NAV MENU --- */
.nav-menu { display: flex; gap: 30px; }
.nav-menu a {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: white; }

/* The little line under nav items also turns orange */
.nav-menu a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background: var(--brand-orange); transition: 0.3s;
}
.nav-menu a:hover::after { width: 100%; }

.mobile-toggle { display: none; font-size: 24px; color: white; cursor: pointer; }

/* Header Search Toggle */
.header-search-toggle {
    font-size: 20px;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.header-search-toggle:hover {
    color: var(--brand-orange);
    transform: scale(1.1);
}

/* Search Overlay (Full Screen) */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 2px solid var(--brand-dark-blue);
    border-radius: 50px;
    padding: 15px 25px;
    transition: 0.3s;
}

.search-overlay.active .search-form {
    border-color: var(--brand-orange);
    box-shadow: 0 0 30px rgba(243, 133, 49, 0.3);
}

.search-form input[type="search"] {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-family: var(--font-body);
    outline: none;
}

.search-form input[type="search"]::placeholder {
    color: #888;
}

.search-form button[type="submit"] {
    background: var(--brand-orange);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.search-form button[type="submit"]:hover {
    background: #ff6b00;
    transform: scale(1.1);
}

.close-search {
    background: transparent;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: 0.3s;
}

.close-search:hover {
    color: white;
    transform: rotate(90deg);
}

.search-suggestions {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    background: var(--bg-card);
    border: 1px solid var(--brand-dark-blue);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.suggestion-item:hover {
    border-color: var(--brand-orange);
    transform: translateX(5px);
}

.suggestion-item h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: var(--font-head);
}

.suggestion-item p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* --- 3. LIVE TICKER --- */
.ticker-section {
    background: #080d11; 
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}
.ticker-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    align-items: center;
}
.ticker-wrap::-webkit-scrollbar { height: 4px; }
.ticker-wrap::-webkit-scrollbar-thumb { background: var(--brand-dark-blue); border-radius: 2px; }

.match-tile {
    background: var(--bg-card);
    min-width: 260px;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
/* Hover on Score Tile -> Border turns Orange */
.match-tile:hover { border-color: var(--brand-orange); }

.live-indicator {
    position: absolute; top: 0; right: 0;
    background: var(--brand-orange); color: white;
    font-size: 10px; font-weight: bold; padding: 2px 6px;
    border-bottom-left-radius: 6px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }

.tile-header { font-size: 11px; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.tile-team { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.tile-status { font-size: 11px; color: var(--brand-blue); margin-top: 5px; }

/* --- 4. HERO SLIDER --- */
.slider-container {
    max-width: var(--max-width);
    margin: 30px auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.slider-track { display: flex; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; height: 450px; position: relative; }
.slide-bg { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.slide-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    background: linear-gradient(to top, rgba(11, 17, 22, 0.95), transparent);
}
.slide-tag {
    background: var(--brand-orange); color: white; padding: 3px 8px;
    font-size: 11px; font-weight: bold; text-transform: uppercase;
    border-radius: 3px; margin-bottom: 10px; display: inline-block;
}
.slide-title {
    font-family: var(--font-head); font-size: 48px; line-height: 1;
    color: white; margin-bottom: 5px; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- 5. MAIN LAYOUTS --- */
.container { 
    max-width: var(--max-width); 
    margin: 40px auto 60px; 
    padding: 0 20px; 
    width: 100%;
    box-sizing: border-box;
}

.main-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--brand-dark-blue);
    padding-bottom: 10px;
    width: 100%;
    visibility: visible;
    opacity: 1;
}
.sec-title {
    font-family: var(--font-head);
    font-size: 28px;
    color: white;
    text-transform: uppercase;
    display: block;
    visibility: visible;
    opacity: 1;
}
.view-all { font-size: 14px; color: var(--brand-blue); font-weight: 500; }
.view-all:hover { color: var(--brand-orange); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

/* --- 6. CARDS (UPDATED HOVER) --- */
.news-card {
    background: var(--bg-card); border-radius: 8px; overflow: hidden;
    transition: transform 0.2s; border: 1px solid transparent; display: flex; flex-direction: column;
    cursor: pointer;
}

/* When hovering the card card, title turns Orange & border turns dark blue */
.news-card:hover { transform: translateY(-5px); border-color: var(--brand-dark-blue); }
.news-card:hover .card-title { color: var(--brand-orange); transition: 0.3s; }

.card-img { height: 180px; width: 100%; object-fit: cover; }
.card-body { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.card-cat { color: var(--brand-blue); font-size: 11px; font-weight: bold; text-transform: uppercase; margin-bottom: 8px; display: block; }
.card-title { font-family: var(--font-head); font-size: 22px; line-height: 1.1; margin-bottom: 8px; color: #fff; transition: 0.3s; }
.card-meta { font-size: 12px; color: var(--text-muted); margin-top: auto; }

/* --- 7. SIDEBAR WIDGETS --- */
.sidebar { position: sticky; top: 100px; height: fit-content; }
.widget { 
    background: var(--bg-card); padding: 20px; border-radius: 8px; 
    margin-bottom: 30px; border-top: 3px solid var(--brand-orange); 
}
.widget-head { 
    font-family: var(--font-head); font-size: 22px; margin-bottom: 20px; 
    color: white; border-bottom: 1px solid var(--brand-dark-blue); padding-bottom: 10px; 
}
.trend-item { display: flex; gap: 15px; margin-bottom: 15px; align-items: start; }
.trend-num { font-family: var(--font-head); font-size: 32px; color: var(--brand-dark-blue); line-height: 0.8; font-weight: 700; }
.trend-title { font-size: 14px; font-weight: 500; line-height: 1.4; color: #eee; transition: 0.3s; }
.trend-title:hover { color: var(--brand-orange); cursor: pointer; }

/* --- 8. INTERVIEWS --- */
.interviews-wrapper {
    background: #080d11;
    padding: 60px 0;
    border-top: 1px solid var(--brand-dark-blue);
    border-bottom: 1px solid var(--brand-dark-blue);
}
.interview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.int-card {
    background: var(--bg-card); border-radius: 12px; padding: 30px;
    display: flex; align-items: center; gap: 20px; border: 1px solid var(--brand-dark-blue);
    transition: 0.3s;
}
.int-card:hover { border-color: var(--brand-orange); } /* Hover effect on interview card */

.int-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--brand-orange); }
.int-quote { font-style: italic; color: var(--text-muted); font-size: 16px; margin-bottom: 10px; }
.int-author { font-family: var(--font-head); color: var(--brand-blue); font-size: 20px; }

/* --- 9. FOOTER (UPDATED to BLACK) --- */
footer { 
    background: #000000; /* Pure Black as requested */
    padding: 60px 0 0; margin-top: auto; 
    border-top: 3px solid var(--brand-orange); 
}
.footer-brand {
    width: 250px; 
    height: auto;
    display: block;
    margin-bottom: 20px;
}
.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
    box-sizing: border-box;
}
.f-head { font-family: var(--font-head); font-size: 18px; color: white; margin-bottom: 20px; letter-spacing: 1px; }
.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.f-links a { 
    color: #dcebf7; 
    font-size: 14px; 
    transition: 0.2s; 
    display: block;
} 

.f-links a:hover { 
    color: var(--brand-orange); 
    padding-left: 5px; 
}

.f-col {
    width: 100%;
    box-sizing: border-box;
}

.f-brand {
    width: 100%;
    box-sizing: border-box;
}

.socials a {
    width: 35px; height: 35px; background: #222; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-right: 10px; color: white; transition: 0.3s;
}
.socials a:hover { background: var(--brand-orange); transform: translateY(-3px); }

.copyright { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 25px 0; 
    background: #050505; 
    width: 100%;
    box-sizing: border-box;
}

.copy-inner {
    max-width: var(--max-width); 
    margin: 0 auto; 
    padding: 0 20px;
    display: flex; 
    justify-content: space-between; 
    font-size: 13px; 
    color: #aab8c5;
    width: 100%;
    box-sizing: border-box;
}
.waveink { color: var(--brand-orange); font-weight: bold; text-decoration: none; transition: 0.3s; }
.waveink:hover { color: white; text-decoration: underline; }

/* --- 10. RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-menu {
        display: none; position: absolute; top: 80px; left: 0; width: 100%; z-index: 999;
        background: black; flex-direction: column; padding: 20px; border-bottom: 1px solid var(--brand-dark-blue);
    }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: block; }
    .header-search-toggle { display: flex !important; }
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; margin-top: 40px; }
    .interview-grid { grid-template-columns: 1fr; } 
    .int-card { flex-direction: column; text-align: center; }
    .footer-content { 
        grid-template-columns: 1fr 1fr; 
        gap: 30px;
        padding: 40px 20px;
        width: 100%;
    }
    .search-container { width: 95%; }
    .search-form { padding: 12px 20px; }
    .search-form input[type="search"] { font-size: 16px; }
    .search-overlay { padding: 20px; }
}

@media (max-width: 600px) {
    .slide-title { font-size: 32px; }
    /* Footer Mobile - Full Width, No Gap */
    footer {
        padding: 40px 0 0;
        width: 100% !important;
        margin: 0;
        overflow-x: hidden;
    }
    
    .footer-content { 
        grid-template-columns: 1fr !important; 
        gap: 30px;
        padding: 40px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 40px 0 !important;
        box-sizing: border-box;
    }
    
    .f-col {
        width: 100% !important;
        text-align: left;
        padding: 0;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .f-brand {
        text-align: center;
        width: 100% !important;
        padding: 0;
        margin: 0 auto 20px auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .f-head {
        margin-bottom: 15px;
        font-size: 18px;
        width: 100%;
    }
    
    .f-links {
        width: 100% !important;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .f-links li {
        width: 100%;
    }
    
    .copy-inner { 
        flex-direction: column; 
        gap: 10px; 
        text-align: center; 
        width: 100% !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .copyright {
        width: 100% !important;
        padding: 20px 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Logo adjustments for mobile */
    .header-brand img { height: auto; max-width: 200px; }
    .footer-brand { width: 250px; margin: 0 auto 20px auto; }
    
    /* Fix horizontal scroll - only prevent horizontal, allow vertical */
    .article-body p,
    .article-body h2,
    .article-body h3,
    .article-body h4 {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .article-body img {
        height: auto;
        width: 100% !important;
        max-width: 100%;
    }
    
    .article-body iframe {
        max-width: 100%;
        width: 100%;
    }
    
    .article-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        max-width: 100%;
    }
    
    .article-body pre,
    .article-body code {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: pre-wrap;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    /* Ensure vertical scroll works */
    body, html {
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto !important;
    }
    
    .container, .article-content, .article-body {
        overflow-y: visible !important;
        overflow-x: hidden;
    }
}

/* --- LAYOUT REPAIR KIT --- */

/* 1. The Split Grid (Puts Content Left, Form Right) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal halves */
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* 2. Text Block (Left Side) */
.text-block h2 {
    font-family: var(--font-head);
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.text-block p {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 20px;
}

/* 3. Page Header (The "Get In Touch" Title) */
.page-header-simple {
    text-align: center;
    margin: 40px 0 60px;
}

.page-title {
    font-family: var(--font-head);
    font-size: 56px;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* 4. Mobile Fix (Stack them on phones) */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-title {
        font-size: 42px;
    }
}


/* --- ESSENTIAL FORM STYLES (Fixes Broken Inputs) --- */

/* 1. Spacing Wrapper */
.form-group {
    margin-bottom: 25px;
}

/* 2. Labels */
.form-group label {
    display: block;
    color: #ccc;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* 3. The Input Boxes (Dark Mode) */
.form-control {
    width: 100%;
    padding: 15px;
    background: #111; /* Dark background */
    border: 1px solid var(--brand-dark-blue);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border-radius: 6px;
    transition: 0.3s;
}

/* Focus State: Glows Orange when you click inside */
.form-control:focus {
    outline: none;
    border-color: var(--brand-orange);
    background: #1a1a1a;
    box-shadow: 0 0 10px rgba(243, 133, 49, 0.2);
}

/* 4. The Submit Button */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--brand-orange);
    color: white;
    border: none;
    font-family: var(--font-head);
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #d66b1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(243, 133, 49, 0.4);
}

/* ---  ABOUT PAGE STYLES --- */

/* 1. Cinematic Hero */
.about-hero {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0; /* Connected to stats strip */
}

/* Dark overlay so text pops */
.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 20px;
}

.hero-big-text {
    font-family: var(--font-head);
    font-size: 80px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-sub {
    font-size: 20px;
    color: #ddd;
    margin-top: 15px;
    font-weight: 300;
    max-width: 600px;
}

/* 2. The Orange Stats Strip */
.stats-strip {
    background: var(--brand-orange);
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 20px;
    margin-bottom: 60px;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-box i { font-size: 24px; margin-bottom: 10px; opacity: 0.8; }
.stat-box h3 { font-family: var(--font-head); font-size: 48px; line-height: 1; margin-bottom: 5px; }
.stat-box span { font-size: 14px; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }

/* 3. Mission Box */
.mission-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    border: 1px solid var(--brand-dark-blue);
    padding: 40px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--bg-card), #080d11);
}
.mission-text {
    font-size: 22px;
    color: white;
    font-style: italic;
    line-height: 1.6;
}
.mission-text strong { color: var(--brand-orange); }

/* 4. Story Section */
.story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: center;
    margin-bottom: 80px;
}
.story-head { font-family: var(--font-head); font-size: 36px; color: white; margin-bottom: 20px; }
.story-content p { font-size: 17px; color: #ccc; margin-bottom: 15px; }
.story-img img {
    border-radius: 12px;
    box-shadow: -10px 10px 0px var(--brand-dark-blue); /* Cool offset border effect */
}

/* 5. Squad Cards (Player Profile Style) */
.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

/* Fallback for older browsers */
@supports not (display: grid) {
    .squad-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    .squad-card {
        flex: 1 1 250px;
        min-width: 250px;
    }
}

.squad-card {
    background: var(--bg-card);
    border: 1px solid var(--brand-dark-blue);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 300px;
}

.squad-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.squad-img-box {
    position: relative;
    width: 120px; height: 120px;
    margin: 0 auto 20px;
}

.squad-img-box img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 50%;
    border: 4px solid var(--brand-dark-blue);
}

/* Captain Badge */
.squad-badge {
    position: absolute; bottom: 0; right: 0;
    background: var(--brand-orange);
    color: white; font-family: var(--font-head);
    font-weight: bold; width: 30px; height: 30px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    border: 2px solid var(--bg-card);
}

.squad-card h3 { color: white; font-family: var(--font-head); font-size: 24px; margin-bottom: 5px; }
.squad-card .role { color: var(--brand-blue); font-size: 12px; font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 15px; }
.squad-card .bio { color: #888; font-size: 14px; line-height: 1.5; }

/* Values Section */
.values-section {
    margin: 80px 0;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Fallback for older browsers */
@supports not (display: grid) {
    .values-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    .value-card {
        flex: 1 1 250px;
        min-width: 250px;
    }
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--brand-dark-blue);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 200px;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.value-card i {
    font-size: 40px;
    color: var(--brand-orange);
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.value-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--brand-dark-blue), #1a2a3a);
    border: 2px solid var(--brand-orange);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0 40px;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 100%;
    box-sizing: border-box;
}

.about-cta h2 {
    font-family: var(--font-head);
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-cta p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: var(--brand-orange);
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    visibility: visible;
    opacity: 1;
}

.btn-cta:hover {
    background: #ff6b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 133, 49, 0.4);
    color: white;
}

.section-title {
    font-family: var(--font-head);
    font-size: 36px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero { height: 300px; }
    .hero-big-text { font-size: 48px; }
    .hero-sub { font-size: 16px; padding: 0 20px; }
    .stats-strip { flex-direction: column; gap: 30px; padding: 30px 20px; }
    .stat-box h3 { font-size: 36px; }
    .story-grid { grid-template-columns: 1fr; gap: 30px; }
    .mission-box { padding: 30px 20px; margin-bottom: 50px; }
    .mission-text { font-size: 18px; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .squad-grid { grid-template-columns: 1fr; }
    .about-cta { padding: 40px 20px; }
    .about-cta h2 { font-size: 32px; }
    .section-title { font-size: 28px; }
}


/* --- ARTICLE PAGE STYLES --- */

/* 1. Header Area */
.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--brand-dark-blue);
    padding-bottom: 20px;
}

.article-h1 {
    font-family: var(--font-head);
    font-size: 48px;
    line-height: 1.1;
    margin: 15px 0;
    color: white;
}

.article-meta {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 20px;
}

.article-meta i {
    color: var(--brand-orange);
    margin-right: 5px;
}

/* 2. Hero Image */
.article-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid var(--brand-dark-blue);
}

/* 3. Body Typography */
.article-body {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.article-body p {
    font-size: 19px; /* Slightly larger for better readability */
    color: #cfcfcf;
    margin-bottom: 25px;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.article-body .lead-text {
    font-size: 21px;
    color: white;
    font-weight: 400;
}

.article-body h2 {
    font-family: var(--font-head);
    font-size: 34px;
    color: white;
    margin: 40px 0 20px;
    border-left: 4px solid var(--brand-orange);
    padding-left: 15px;
}

/* 4. Highlight/Quote Box */
.highlight-box {
    background: var(--bg-card);
    border-top: 2px solid var(--brand-orange);
    border-bottom: 2px solid var(--brand-orange);
    padding: 35px;
    font-family: var(--font-head);
    font-size: 26px;
    font-style: italic;
    color: white;
    margin: 40px 0;
    text-align: center;
    line-height: 1.4;
}

/* 5. Bottom Tags */
.article-footer-tags {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--brand-dark-blue);
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-footer-tags span {
    font-weight: bold;
    color: var(--brand-orange);
}

.tag {
    background: var(--bg-card);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #ccc;
    border: 1px solid var(--border-color);
}

.tag:hover {
    background: var(--brand-orange);
    color: white;
    border-color: var(--brand-orange);
}

/* Scorecard Modal */
.scorecard-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.scorecard-content {
    background: var(--bg-card);
    border: 2px solid var(--brand-orange);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.scorecard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--brand-dark-blue);
}

.scorecard-header h2 {
    font-family: var(--font-head);
    font-size: 24px;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.close-scorecard {
    background: transparent;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-scorecard:hover {
    color: white;
    transform: rotate(90deg);
}

.scorecard-body {
    padding: 20px;
}

.scorecard-teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.team-score {
    background: var(--bg-body);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--brand-dark-blue);
    text-align: center;
}

.team-score h3 {
    font-family: var(--font-head);
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.team-score p {
    font-size: 24px;
    color: var(--brand-orange);
    font-weight: bold;
    margin: 0;
}

.scorecard-status {
    border-top: 1px solid var(--brand-dark-blue);
    padding-top: 20px;
}

.scorecard-status p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.scorecard-status strong {
    color: white;
}

@media (max-width: 600px) {
    .scorecard-content {
        max-width: 100%;
        margin: 10px;
    }
    
    .scorecard-teams {
        grid-template-columns: 1fr;
    }
    
    .scorecard-header h2 {
        font-size: 20px;
    }
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .article-h1 { font-size: 36px; }
    .article-hero-img { height: 250px; }
    .highlight-box { font-size: 22px; padding: 25px; }
}

/* --- INTERVIEW PAGE SPECIFICS --- */

/* 1. Interview Hero (Complex Header) */
.interview-hero-header {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid var(--brand-dark-blue);
    background: #000;
}

.hero-bg-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    opacity: 0.4; /* Dimmed background */
}

.hero-overlay-content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 30px;
}

.profile-avatar {
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 4px solid var(--brand-orange);
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero-text { flex-grow: 1; }
.hero-role { 
    color: var(--brand-orange); 
    font-weight: bold; 
    letter-spacing: 1px; 
    font-size: 13px; 
    background: rgba(243, 133, 49, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}
.hero-h1 { font-family: var(--font-head); font-size: 48px; line-height: 1; margin: 10px 0; color: white; }
.hero-desc { color: #ccc; font-size: 18px; max-width: 700px; margin-bottom: 15px; }
.hero-meta { font-size: 13px; color: var(--text-muted); display: flex; gap: 15px; }
.hero-meta i { color: var(--brand-orange); margin-right: 5px; }

/* 2. Q&A Styling */
.interview-body { max-width: 900px; }

.intro-text {
    font-size: 20px;
    color: white;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    border-left: 3px solid var(--brand-dark-blue);
    padding-left: 20px;
}

.qa-block {
    margin-bottom: 40px;
    background: rgba(255,255,255,0.02); /* Subtle card background */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.qa-block:hover { border-color: var(--brand-dark-blue); }

.question {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--brand-orange);
    margin-bottom: 15px;
    line-height: 1.3;
}

.answer {
    font-size: 18px;
    color: #ddd;
    line-height: 1.7;
    position: relative;
    padding-left: 0;
}

/* Labels like CR: and GG: */
.q-label { color: #888; font-size: 18px; margin-right: 5px; }
.a-label { font-weight: bold; color: white; margin-right: 8px; float: left; }

/* 3. Sidebar Mini Interviews */
.mini-interview-card {
    display: flex; gap: 15px; align-items: center;
    padding: 12px 0; border-bottom: 1px solid #222;
}
.mini-interview-card:last-child { border-bottom: none; }
.mini-interview-card img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #333; }
.mini-name { font-size: 12px; color: #888; text-transform: uppercase; margin-bottom: 2px; }
.mini-title { font-size: 14px; font-weight: 500; color: white; line-height: 1.3; transition: 0.2s; }
.mini-interview-card:hover .mini-title { color: var(--brand-orange); }

/* Mobile Response */
@media (max-width: 768px) {
    .hero-overlay-content { flex-direction: column; text-align: center; padding: 20px; }
    .hero-bg-img { height: 450px; /* Taller on mobile to fit content */ }
    .hero-h1 { font-size: 32px; }
    .profile-avatar { width: 100px; height: 100px; }
}


/* --- NEWS PAGE PAGINATION --- */

.pagination-container {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--brand-dark-blue);
}

.btn-load-more {
    background: transparent;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    padding: 12px 30px;
    font-family: var(--font-head);
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    background: var(--brand-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 133, 49, 0.3);
}

.btn-load-more i {
    transition: 0.5s;
}

.btn-load-more:hover i {
    transform: rotate(180deg);
}


/* --- WRITE FOR US Design --- */

/* 1. WFU Hero Banner */
.wfu-hero {
    height: 350px;
    background: url('https://images.unsplash.com/photo-1510963389524-81d37b679804?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 60px;
    border-bottom: 4px solid var(--brand-orange);
}

.wfu-overlay {
    background: rgba(0,0,0,0.8);
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; padding: 20px;
}

.wfu-title {
    font-family: var(--font-head); font-size: 72px; color: white;
    line-height: 0.9; text-transform: uppercase; margin-bottom: 15px;
}
.wfu-sub { font-size: 20px; color: #ccc; max-width: 600px; }

/* 2. Benefit Cards */
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-bottom: 80px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--brand-dark-blue);
    text-align: center;
    transition: 0.3s;
}

.benefit-card:hover { transform: translateY(-10px); border-color: var(--brand-orange); }

.benefit-card i {
    font-size: 40px; color: var(--brand-orange);
    margin-bottom: 20px; display: block;
}

.benefit-card h3 {
    font-family: var(--font-head); font-size: 32px;
    color: white; margin-bottom: 15px;
}

.benefit-card p { color: #aaa; font-size: 15px; line-height: 1.6; }

/* 3. The Pitch Container */
.pitch-container {
    max-width: 800px; margin: 0 auto;
    background: #0e141a;
    border-radius: 16px;
    border: 1px solid var(--brand-dark-blue);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.pitch-header {
    background: var(--brand-orange);
    padding: 30px; text-align: center;
}

.pitch-header h2 { font-family: var(--font-head); font-size: 42px; color: white; margin-bottom: 5px; }
.pitch-header p { color: rgba(255,255,255,0.9); font-size: 16px; }

.pitch-form { padding: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.form-check {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 30px; color: #ccc; font-size: 14px;
}
.form-check input { width: 18px; height: 18px; accent-color: var(--brand-orange); }

/* Responsive */
@media (max-width: 768px) {
    .wfu-title { font-size: 48px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}




/* --- CONTACT PAGE SPECIFICS --- */

.contact-info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-icon {
    width: 50px; height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--brand-dark-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-orange);
    font-size: 20px;
    transition: 0.3s;
}

.contact-item:hover .c-icon {
    background: var(--brand-orange);
    color: white;
    transform: rotate(15deg);
}

.contact-item h4 {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.contact-item a, .contact-item span {
    color: #aaa;
    font-size: 16px;
}

.contact-item a:hover {
    color: var(--brand-orange);
}



/* --- FEATURES PAGE STYLES --- */

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    display: flex;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--brand-dark-blue);
    transition: 0.3s;
    height: 300px; /* Fixed height for uniformity */
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Image Side (40% width) */
.f-img-container {
    width: 40%;
    overflow: hidden;
}

.f-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.feature-card:hover .f-img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Content Side (60% width) */
.f-body {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-title {
    font-family: var(--font-head);
    font-size: 32px;
    line-height: 1.1;
    color: white;
    margin-bottom: 15px;
    transition: 0.3s;
}

.feature-card:hover .f-title {
    color: var(--brand-orange);
}

.f-desc {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.6;
    
    /* Limit to 3 lines with ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-btn {
    font-weight: bold;
    color: var(--brand-blue);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-btn:hover {
    color: var(--brand-orange);
}

/* Mobile Responsive Features */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        height: auto; /* Let height grow naturally */
    }
    
    .f-img-container, .f-body {
        width: 100%;
    }
    
    .f-img-container {
        height: 200px;
    }
    
    .f-body {
        padding: 20px;
    }
    
    .f-title {
        font-size: 26px;
    }
}

/* --- NEW ENHANCEMENTS --- */

/* 1. Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--brand-orange);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* 2. Social Sharing */
.social-sharing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--brand-dark-blue);
    border-bottom: 1px solid var(--brand-dark-blue);
}

.share-label {
    font-family: var(--font-head);
    font-size: 18px;
    color: white;
    margin-right: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.share-copy {
    background: var(--brand-dark-blue);
}

.share-copy:hover {
    background: var(--brand-orange);
}

.share-copy.copied {
    background: #4CAF50;
}

/* 3. Related Posts */
.related-posts-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid var(--brand-dark-blue);
}

.related-posts-title {
    font-family: var(--font-head);
    font-size: 32px;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--brand-dark-blue);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-post-cat {
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.related-post-card h4 {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.related-post-card h4 a {
    color: white;
    transition: 0.3s;
}

.related-post-card:hover h4 a {
    color: var(--brand-orange);
}

.related-post-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}

/* 4. Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(243, 133, 49, 0.4);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(243, 133, 49, 0.6);
}

.scroll-to-top.visible {
    display: flex;
}

/* 5. Reading Time */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 14px;
}

.reading-time i {
    color: var(--brand-orange);
}

/* 6. Toast Notification */
.toast {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--bg-card);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-orange);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
}

.toast.visible {
    display: flex;
}

.toast.success {
    border-left-color: #4CAF50;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 7. Scorecard Modal */
.scorecard-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.scorecard-content {
    background: var(--bg-card);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--brand-orange);
}

.scorecard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--brand-dark-blue);
}

.scorecard-header h2 {
    font-family: var(--font-head);
    font-size: 24px;
    color: white;
    margin: 0;
}

.close-scorecard {
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.close-scorecard:hover {
    color: var(--brand-orange);
    transform: rotate(90deg);
}

.scorecard-body {
    padding: 20px;
}

.scorecard-teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.team-score {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--brand-dark-blue);
}

.team-score h3 {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--brand-orange);
    margin-bottom: 10px;
}

.team-score p {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.scorecard-status {
    border-top: 1px solid var(--brand-dark-blue);
    padding-top: 20px;
}

.scorecard-status p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
}

.scorecard-status strong {
    color: white;
}

/* Scorecard Button */
/* Scorecard Button - Already defined below, keeping this for reference */
    background: var(--brand-orange);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 12px;
    transition: 0.3s;
}

.scorecard-btn:hover {
    background: var(--brand-blue);
    transform: scale(1.1);
}

.match-tile .tile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.match-tile .score {
    font-weight: bold;
    color: var(--brand-orange);
}

/* Mobile Responsive for New Features */
@media (max-width: 768px) {
    .social-sharing {
        flex-wrap: wrap;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .toast {
        right: 20px;
        bottom: 80px;
        max-width: calc(100% - 40px);
    }
    
    .scorecard-teams {
        grid-template-columns: 1fr;
    }
    
    .scorecard-content {
        max-height: 95vh;
    }
}