:root {
    --primary-color: #00843D;
    --secondary-color: #FFB81C;
    --dark-blue: #001a4d;
    --dark-green: #004d2c;
    --dark-gray: #222;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #f4f4f4;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    width: 100%;
    z-index: 1000;
}

/* Tier 1: Blue Bar */
.top-blue-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8rem;
}

.top-blue-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.network-logo {
    font-weight: 900;
    letter-spacing: 1px;
}

.network-logo span {
    font-weight: 400;
    opacity: 0.8;
}

.separator {
    width: 1px;
    height: 15px;
    background-color: rgba(255,255,255,0.3);
}

.right-links {
    display: flex;
    gap: 20px;
}

/* Tier 2: Main Nav */
.main-nav {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links li a {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-link i {
    font-size: 1.1rem;
}

.btn-ticket {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.middle-white-bar {
    background-color: var(--white);
    border-bottom: 1px solid #e6e6e6;
}

.middle-white-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 84px;
}

.right-elements {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icons a {
    color: #b7b7b7;
    font-size: 1.05rem;
    line-height: 1;
    transition: var(--transition);
}

.social-icons a:hover {
    color: #6f6f6f;
}

.social-divider {
    width: 1px;
    height: 22px;
    background-color: #d8d8d8;
}

.quick-search input {
    width: 130px;
    height: 30px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #9a9a9a;
    padding: 0 10px;
    outline: none;
}

.quick-search input::placeholder {
    color: #b3b3b3;
}

.bottom-green-bar {
    background-color: var(--primary-color);
    color: var(--white);
}

.bottom-green-bar .container {
    display: flex;
    align-items: stretch;
    min-height: 56px;
    padding: 0 8px 0 0;
}

.bottom-green-bar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease;
}

.promo-text {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    background-color: #006631;
    white-space: nowrap;
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 18px;
    padding: 0 16px;
}

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

.nav-links li a,
.search-link {
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s ease;
}

.bottom-green-bar .nav-links li a:hover,
.bottom-green-bar .search-link:hover {
    color: var(--white);
    opacity: 0.82;
}

.nav-links li a i {
    font-size: 0.55em;
}

.search-link {
    display: inline-flex;
    align-items: center;
    padding-right: 8px;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    padding: 0 14px;
}

.hero {
    background-color: var(--white);
}

.hero-image {
    display: block;
    width: 100%;
    height: clamp(250px, 35vw, 420px);
    object-fit: cover;
}

.sponsors {
    background-color: var(--white);
    border-bottom: 1px solid #ececec;
    padding: 18px 0 24px;
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(8, minmax(100px, 1fr));
    align-items: center;
    gap: 18px 24px;
}

.sponsors .sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.sponsors .sponsor-item img {
    display: block;
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

/* Main Content Grid */
.main-content-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0;
}

.left-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banners {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-item, .banner-item-secondary {
    min-height: 100px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.banner-item img, .banner-item-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-banners {
    margin-top: 20px;
}

.social-connect-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.sc-logo img {
    height: 60px;
    width: auto;
}

.sc-separator {
    width: 1px;
    height: 60px;
    background-color: #e0e0e0;
}

.sc-text {
    flex: 1;
}

.sc-text p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.4;
    max-width: 300px;
}

.sc-icons {
    display: flex;
    gap: 20px;
}

.sc-icons a {
    font-size: 1.5rem;
    color: var(--dark-gray);
    transition: var(--transition);
}

.sc-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Latest News & Videos Section Refined */
.latest-news-section, .latest-videos-section {
    margin-top: 40px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.title-with-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.green-bar {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
}

.title-with-bar h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-green);
    letter-spacing: 0.5px;
}

.see-more-btn {
    background-color: #e9ecef;
    color: #6c757d;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 900;
    transition: var(--transition);
}

.see-more-btn:hover {
    background-color: #dee2e6;
    color: var(--dark-gray);
}

.refined-news-grid, .refined-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.refined-news-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.refined-news-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.rn-img {
    position: relative;
    height: 180px;
}

.rn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-date {
    position: absolute;
    bottom: -15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-gray);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rn-content {
    padding: 30px 20px 20px;
}

.rn-content h3 {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-gray);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rn-content p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-numbers a {
    font-size: 0.9rem;
    color: #adb5bd;
    font-weight: 700;
}

.page-numbers a.active {
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dots {
    color: #adb5bd;
}

.page-controls {
    display: flex;
    gap: 10px;
}

.btn-page {
    background-color: #e9ecef;
    color: #6c757d;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 900;
    transition: var(--transition);
}

.btn-page:hover {
    background-color: #dee2e6;
    color: var(--dark-gray);
}

/* Green Promo Grid Section */
.promo-grid-section {
    margin-top: 40px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    position: relative;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #004d2c 0%, #00843d 100%);
    z-index: 1;
}

/* Simulating the wavy pattern with a pseudo-element */
.promo-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    opacity: 0.5;
}

.promo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.promo-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 180px;
    letter-spacing: 0.5px;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.promo-card:hover .promo-bg {
    filter: brightness(1.1);
}

.news-slider-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    background-color: #eee; /* Placeholder background */
}

.news-slider {
    display: block;
}

.news-slider .slide {
    display: none;
}

.news-slider .slide:first-child {
    display: block; /* Show first slide by default */
}

.news-slider.slick-initialized .slide {
    display: block;
}

.news-slider .slide-content {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.slider-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--dark-gray);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1rem;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slide-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    width: 100%;
    padding: 40px 30px;
    color: var(--white);
}

.slide-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-gray);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 3px;
}

.slide-overlay h3 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
}

/* Slick Customization */
.slick-prev, .slick-next {
    z-index: 10;
    width: 45px;
    height: 45px;
    background-color: rgba(0,0,0,0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
}

.slick-prev:hover, .slick-next:hover {
    background-color: rgba(0,0,0,0.6) !important;
}

.slick-prev:before, .slick-next:before {
    display: none; /* Hide default dots/arrows */
}

.slick-prev i, .slick-next i {
    color: white;
    font-size: 1.2rem;
}

.slick-prev { left: 20px; }
.slick-next { right: 20px; }

.slick-dots {
    bottom: 25px;
}

.slick-dots li button:before {
    color: white;
    opacity: 0.5;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

.right-sidebar {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quick-links {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-links h4 {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 900;
    border-bottom: 4px solid var(--dark-green);
    color: var(--dark-green);
    text-transform: uppercase;
}

.quick-links ul li {
    border-bottom: 1px solid #f0f0f0;
}

.quick-links ul li:last-child {
    border-bottom: none;
}

.quick-links ul li a {
    display: block;
    padding: 18px 20px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 700;
    transition: var(--transition);
}

.quick-links ul li a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px;
}

.football-account-promo .promo-box {
    background: linear-gradient(135deg, #001a4d, #0033cc);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.promo-box h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.promo-box p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.4;
    opacity: 0.9;
}

.btn-account {
    display: inline-block;
    background-color: var(--white);
    color: #001a4d;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-account:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* News Section */
.news {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--secondary-color);
}

.view-all {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    position: relative;
    height: 200px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 20px;
}

.date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
}

/* Matches Section */
.matches {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.matches-list {
    display: grid;
    gap: 20px;
}

.match-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.match-info {
    flex: 1;
}

.match-date {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.match-venue {
    font-size: 0.8rem;
    color: #888;
}

.match-teams {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.team span {
    font-weight: 700;
    font-size: 0.9rem;
}

.vs {
    font-weight: 900;
    color: #ccc;
}

.match-actions {
    flex: 1;
    text-align: right;
}

/* Partners Section */
.partners-section {
    background-color: #262626;
    color: #999;
    padding: 60px 0;
    text-align: center;
}

.partners-title {
    font-size: 0.9rem;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.partners-grid img {
    max-width: 140px;
    height: auto;
    opacity: 0.7;
    filter: grayscale(100%) brightness(2);
    transition: var(--transition);
}

.partners-grid img:hover {
    opacity: 1;
    filter: none;
}

.government-support {
    border-top: 1px solid #333;
    padding-top: 40px;
}

.government-support p {
    font-size: 0.85rem;
    margin-bottom: 30px;
    color: #888;
}

.asc-logo img {
    max-width: 250px;
    height: auto;
    opacity: 0.8;
}

/* Footer Refinement */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 0;
}

.main-footer {
    padding: 60px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-info-col {
    flex: 1;
    max-width: 300px;
}

.footer-info-col .footer-logo img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social-icons a {
    color: #999;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    color: var(--white);
}

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-btn {
    display: inline-block;
    background-color: #333;
    color: #999;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: #444;
    color: var(--white);
}

.footer-links-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 900;
    color: #999;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: #ccc;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Network Bar */
.footer-network-bar {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.network-label {
    font-size: 1rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
}

.network-label span {
    color: #00843d;
}

/* Legal Bar */
.footer-legal-bar {
    background-color: #0a0a0a;
    padding: 20px 0;
    font-size: 0.75rem;
    color: #666;
}

.legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.legal-links a {
    color: #888;
}

.legal-links a:hover {
    color: var(--white);
}

.legal-links .sep {
    color: #444;
}

.copyright {
    color: #888;
}

/* Sponsor Bar */
.sponsor-bar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.sponsor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sponsor-item img {
    height: 35px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.sponsor-item:hover img {
    filter: none;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sponsor-logos {
        grid-template-columns: repeat(5, minmax(90px, 1fr));
        gap: 14px 18px;
    }

    .sponsors .sponsor-item img {
        max-height: 34px;
    }

    .main-content-grid {
        flex-direction: column;
    }
    
    .right-sidebar {
        width: 100%;
        order: 2;
    }
    
    .left-content {
        order: 1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 230px;
    }

    .sponsor-logos {
        grid-template-columns: repeat(3, minmax(80px, 1fr));
        gap: 12px 14px;
    }

    .sponsors .sponsor-item {
        min-height: 34px;
    }

    .sponsors .sponsor-item img {
        max-height: 28px;
    }

    .middle-white-bar .container {
        min-height: 72px;
    }

    .quick-search,
    .social-divider {
        display: none;
    }

    .bottom-green-bar .container {
        min-height: 50px;
        padding-right: 10px;
    }

    .promo-text,
    .search-link {
        display: none;
    }

    .nav-links {
        display: none; /* Mobile menu logic would go here */
    }

    .mobile-menu-btn {
        display: inline-flex;
        margin-left: auto;
    }

    .refined-news-grid, .refined-videos-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-direction: column;
        gap: 20px;
    }

    .social-connect-card {
        flex-direction: column;
        text-align: center;
    }

    .sc-separator {
        width: 100%;
        height: 1px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
