:root {
            --text-colour: #000000;
            --accent-colour: #007aff;
            --card-bg: rgba(242, 242, 247, 0.58);
            --channel-bg: #000000;
            --channel-text: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rubik', sans-serif;
            color: var(--text-colour);
            line-height: 1.6;
            padding: 1rem;
            background-color: #ffffff;
            position: relative;
        }
        
     
        
      .seo-content {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    font-size: 0.9rem;
    color: #444;
    text-align: center; /* Center-align text within the container */
}

.seo-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: center; /* Center-align paragraph text */
}

.seo-content ul {
    text-align: left; /* Left-align text within lists */
    display: inline-block; /* Make the list inline-block to center it */
    margin: 0 auto; /* Center the list horizontally */
    padding-left: 1.5rem; /* Add padding for bullet points */
    list-style-position: inside; /* Ensure bullets are inside the container */
}

.seo-content ul li {
    margin-bottom: 0.5rem; /* Add spacing between list items */
}

        .menu-btn {
            position: fixed;
            top: 1rem;
            left: 1rem;
            z-index: 1000;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text-colour);
            margin: 5px 0;
            transition: 0.3s;
        }
        
        /* Hamburger menu animation for open state */
        .menu-btn.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .menu-btn.open span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-btn.open span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .nav-menu {
            position: fixed;
            top: 0;
            left: -250px;
            width: 250px;
            height: 100%;
            background: white;
            box-shadow: 2px 0 5px rgba(0,0,0,0.1);
            transition: 0.3s;
            z-index: 999;
            padding-top: 60px;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu ul {
            list-style: none;
            padding: 0 1rem;
        }

        .nav-menu a {
            display: block;
            padding: 1rem;
            text-decoration: none;
            color: var(--text-colour);
            border-bottom: 1px solid #eee;
        }

        .nav-menu .has-submenu > a {
            position: relative;
        }
        
        .nav-menu .has-submenu > a:after {
            content: '▼';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .nav-menu .has-submenu.active > a:after {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .nav-menu .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-left: 1rem;
        }

        .nav-menu .has-submenu.active .submenu {
            max-height: 500px;
            overflow-y: auto;
        }

        .nav-menu .submenu a {
            padding: 0.8rem 1rem;
            font-size: 0.9em;
            border-bottom: none;
        }

        .nav-menu a:hover {
            background: var(--card-bg);
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            z-index: 998;
        }

        .overlay.active {
            display: block;
        }

        .header {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .title {
            font-family: 'Rubik', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-colour);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        
       .h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-colour);
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
    text-align: center; /* Centers the text */
}

.h2-container {
    display: flex;
    justify-content: center;
    align-items: center;
}



        .search-container {
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .search-input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--accent-colour);
            border-radius: 25px;
            font-size: 1rem;
        }

        .filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .filter-btn {
            padding: 0.5rem 1rem;
            border: 2px solid var(--accent-colour);
            border-radius: 20px;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active {
            background: var(--accent-colour);
            color: white;
        }

        .filter-btn:hover {
            background: var(--accent-colour);
            color: white;
        }

        .reset-btn {
            background: #ff3b30;
            color: white;
            border: none;
        }

        .day-group {
            margin-bottom: 2rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
        }

        .day-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background-color: var(--accent-colour);
            color: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            cursor: pointer;
        }

        .day-title {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .collapse-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .day-group.collapsed .collapse-icon {
            transform: rotate(180deg);
        }

        .fixtures-grid {
            display: grid;
            gap: 1.5rem;
        }

        .fixture-card {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .fixture-card:hover {
            transform: translateY(-5px);
        }

        .fixture-time {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .fixture-teams {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .fixture-competition {
            color: #666666;
            margin-bottom: 1rem;
        }

        .channel-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .fixtures-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .fixtures-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        
        /* FAQ Content Styles */
        .faq-container {
            max-width: 1200px;
            margin: 4rem auto 2rem;
            padding: 0 1rem;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .faq-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-colour);
        }

        .faq-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-card:hover {
            transform: translateY(-3px);
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--accent-colour);
            margin-bottom: 1rem;
        }

        .faq-answer {
            color: #444;
            line-height: 1.7;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .faq-container {
                padding: 0 2rem;
            }
            .faq-card {
                padding: 2rem;
            }
            .faq-question {
                font-size: 1.3rem;
            }
        }
        
       /* Add footer styles */
    .faq-footer {
        text-align: center;
        margin: 2rem 0;
        padding: 1.5rem;
        border-top: 1px solid #eee;
    }
    
    .faq-footer a {
        color: var(--accent-colour);
        font-weight: 500;
        text-decoration: none; /* Removed underline */
    }
    
    .faq-footer a:hover {
        opacity: 0.8;
        text-decoration: none; /* Ensure no underline on hover */
    }