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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            background: #0a0a0a;
            color: #e5e5e5;
            min-height: 100vh;
            padding: 0.5rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        strong {
            color: #BBA175 ;
        }
        /* Header Styles */
        .header {
            background: #1a1a1a;
            border-bottom: 1px solid #333;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }

        .header-logo a {
            display: block;
            line-height: 0;
        }

        .header-logo img {
            height: 50px;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .header-logo img:hover {
            opacity: 0.8;
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .register-button {
            background: #BBA175;
            color: #0a0a0a;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .register-button:hover {
            background: #9d8c66;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 0.5rem;
            }
            
            .header-logo img {
                height: 40px;
            }
            
            .register-button {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        }
        h1 {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #BBA175;
        }

        h2 {
            color: #BBA175;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        /* Updated unfold components with gradient fade effect and bottom arrow */
        .unfold {
            background: #1a1a1a;
            border-radius: 12px;
            position: relative;
            padding: 1.5rem;
        }

        .unfold input[type="checkbox"] {
            display: none;
        }

        .unfold h3 {
            color: #BBA175;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .unfold-text {
            position: relative;
            max-height: 120px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .unfold input[type="checkbox"]:checked ~ .unfold-text {
            max-height: none;
        }

        .unfold-text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(transparent, #1a1a1a);
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .unfold input[type="checkbox"]:checked ~ .unfold-text::after {
            opacity: 0;
        }

        .unfold-arrow {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.9);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #BBA175;
            font-size: 1.2rem;
            opacity: 1; /* Keep visible */
        }

        /* Fixed: Remove the opacity: 0 and keep the arrow visible with rotation */
        .unfold input[type="checkbox"]:checked ~ .unfold-arrow {
            transform: translateX(-50%) rotate(180deg);
            bottom: 1rem; /* Keep same position instead of moving to -20px */
        }

        /* Updated horizontal tabs with dark theme */
        .tabs {
            margin: 4rem 0;
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
        }

        .tabs input[type="radio"] {
            display: none;
        }

        .tab-labels {
            display: flex;
            background: #2a2a2a;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: #555 #2a2a2a;
        }

        .tab-label {
            flex-shrink: 0;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #2a2a2a;
            color: #e5e5e5;
            border-bottom: 3px solid transparent;
            min-width: 200px;
            white-space: nowrap;
        }

        .tab-label:hover {
            background: #3a3a3a;
        }

        .tabs input[type="radio"]:nth-of-type(1):checked~.tab-labels .tab-label:nth-of-type(1),
        .tabs input[type="radio"]:nth-of-type(2):checked~.tab-labels .tab-label:nth-of-type(2),
        .tabs input[type="radio"]:nth-of-type(3):checked~.tab-labels .tab-label:nth-of-type(3),
        .tabs input[type="radio"]:nth-of-type(4):checked~.tab-labels .tab-label:nth-of-type(4),
        .tabs input[type="radio"]:nth-of-type(5):checked~.tab-labels .tab-label:nth-of-type(5),
        .tabs input[type="radio"]:nth-of-type(6):checked~.tab-labels .tab-label:nth-of-type(6),
        .tabs input[type="radio"]:nth-of-type(7):checked~.tab-labels .tab-label:nth-of-type(7),
        .tabs input[type="radio"]:nth-of-type(8):checked~.tab-labels .tab-label:nth-of-type(8),
        .tabs input[type="radio"]:nth-of-type(9):checked~.tab-labels .tab-label:nth-of-type(9),
        .tabs input[type="radio"]:nth-of-type(10):checked~.tab-labels .tab-label:nth-of-type(10) {
            background: #1a1a1a;
            border-bottom-color: #BBA175;
            color: #BBA175;
            font-weight: 600;
        }

        .tab-content {
            display: none;
            padding: 2rem;
            background: #1a1a1a;
        }

        .tabs input[type="radio"]:nth-of-type(1):checked~.tab-contents .tab-content:nth-of-type(1),
        .tabs input[type="radio"]:nth-of-type(2):checked~.tab-contents .tab-content:nth-of-type(2),
        .tabs input[type="radio"]:nth-of-type(3):checked~.tab-contents .tab-content:nth-of-type(3),
        .tabs input[type="radio"]:nth-of-type(4):checked~.tab-contents .tab-content:nth-of-type(4),
        .tabs input[type="radio"]:nth-of-type(5):checked~.tab-contents .tab-content:nth-of-type(5),
        .tabs input[type="radio"]:nth-of-type(6):checked~.tab-contents .tab-content:nth-of-type(6),
        .tabs input[type="radio"]:nth-of-type(7):checked~.tab-contents .tab-content:nth-of-type(7),
        .tabs input[type="radio"]:nth-of-type(8):checked~.tab-contents .tab-content:nth-of-type(8),
        .tabs input[type="radio"]:nth-of-type(9):checked~.tab-contents .tab-content:nth-of-type(9),
        .tabs input[type="radio"]:nth-of-type(10):checked~.tab-contents .tab-content:nth-of-type(10) {
            display: block;
        }

        /* Added vertical tabs section */
        .vertical-tabs {
            margin: 1rem 0;
            display: flex;
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            min-height: 400px;
        }

        .vertical-tabs input[type="radio"] {
            display: none;
        }

        .vertical-tab-labels {
            width: 400px;
            background: #2a2a2a;
            display: flex;
            flex-direction: column;
        }

        .vertical-tab-label {
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #2a2a2a;
            color: #e5e5e5;
            border-bottom: 3px solid transparent;
            text-align: center;
        }

        .vertical-tab-label:hover {
            background: #3a3a3a;
        }

        .vertical-tabs input[type="radio"]:nth-of-type(1):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(1),
        .vertical-tabs input[type="radio"]:nth-of-type(2):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(2),
        .vertical-tabs input[type="radio"]:nth-of-type(3):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(3),
        .vertical-tabs input[type="radio"]:nth-of-type(4):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(4),
        .vertical-tabs input[type="radio"]:nth-of-type(5):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(5),
        .vertical-tabs input[type="radio"]:nth-of-type(6):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(6),
        .vertical-tabs input[type="radio"]:nth-of-type(7):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(7),
        .vertical-tabs input[type="radio"]:nth-of-type(8):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(8),
        .vertical-tabs input[type="radio"]:nth-of-type(9):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(9),
        .vertical-tabs input[type="radio"]:nth-of-type(10):checked~.vertical-tab-labels .vertical-tab-label:nth-of-type(10) {
            background: #1a1a1a;
            border-bottom-color: #BBA175;
            color: #BBA175;
            font-weight: 600;
        }

        .vertical-tab-contents {
            flex: 1;
            padding: 0.5rem;
        }

        .vertical-tab-content {
            display: none;
        }

        .vertical-tabs input[type="radio"]:nth-of-type(1):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(1),
        .vertical-tabs input[type="radio"]:nth-of-type(2):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(2),
        .vertical-tabs input[type="radio"]:nth-of-type(3):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(3),
        .vertical-tabs input[type="radio"]:nth-of-type(4):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(4),
        .vertical-tabs input[type="radio"]:nth-of-type(5):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(5),
        .vertical-tabs input[type="radio"]:nth-of-type(6):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(6),
        .vertical-tabs input[type="radio"]:nth-of-type(7):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(7),
        .vertical-tabs input[type="radio"]:nth-of-type(8):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(8),
        .vertical-tabs input[type="radio"]:nth-of-type(9):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(9),
        .vertical-tabs input[type="radio"]:nth-of-type(10):checked~.vertical-tab-contents .vertical-tab-content:nth-of-type(10) {
            display: block;
        }

        /* Updated accordion with dark theme */
        .accordion {
            margin: 1rem 0;
        }

        .accordion-item {
            margin-bottom: 1rem;
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
        }

        .accordion input[type="checkbox"] {
            display: none;
        }

        .accordion-header {
            display: flex;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            background: #2a2a2a;
            transition: all 0.3s ease;
            color: #BBA175;
            font-weight: 600;
        }

        .accordion-header:hover {
            background: #3a3a3a;
        }

        .accordion-header::after {
            content: '▼';
            margin-left: auto;
            font-size: 1.2rem;
            color: #BBA175;
            transition: transform 0.3s ease;
        }

        .accordion input[type="checkbox"]:checked+.accordion-header::after {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s ease;
            background: #1a1a1a;
        }

        .accordion input[type="checkbox"]:checked~.accordion-content {
            max-height: 300px;
            opacity: 1;
            padding: 1.5rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .stat-item {
            background: #2a2a2a;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #BBA175;
        }

    .tag {
            display: inline-block;
            background: #BBA175;
            color: #0a0a0a;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            margin: 0.25rem;
        }

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

        .league-card button:hover {
            background: #9d8c66;
        }

        /* Football leagues styles (moved from inline attributes) */
        .football-leagues-section {
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: #1a1a1a;
            border-radius: 12px;
        }

        .football-leagues-section h2 {
            text-align: center;
            color: #BBA175;
            margin-bottom: 3rem;
            font-size: 2rem;
        }

        .leagues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .league-card {
            background: #2a2a2a;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .league-image {
            height: 200px;
            background: #666;
            position: relative;
        }

        .league-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 1rem;
        }

        .league-image-overlay h3 {
            color: #BBA175;
            margin: 0;
            font-size: 1.3rem;
        }

        .league-card-body {
            padding: 1.5rem;
            color: #e5e5e5;
        }

        .league-card-body p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .league-card-button {
            background: #BBA175;
            color: #0a0a0a;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
        }
        .w-100 {
            width: 100%;
            margin: 0 auto;
            display: block;
        }
        .w-50 {
            width: 50%;
            margin: 0 auto;
            display: block;
        }
        .hero-cta {
            margin-top: 1.25rem;
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
        }

        /* Ensure the primary CTA matches the site's dark/gold theme and is accessible */
        .hero-cta {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center; /* center the CTA buttons */
            margin-bottom:90px;
        }

        .hero-cta .btn-primary,
        .hero-cta .cta-button.btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 1.6rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            background: #BBA175;
            color: #0a0a0a;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

        .hero-cta .btn-primary:hover,
        .hero-cta .btn-primary:focus {
            background: #9d8c66;
            transform: translateY(-2px);
            outline: none;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        }

        .hero-cta .btn-primary:focus-visible {
            box-shadow: 0 0 0 4px rgba(187, 161, 117, 0.18);
        }

        /* Disabled state */
        .hero-cta .btn-primary[aria-disabled="true"],
        .hero-cta .btn-primary.disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-cta {
            justify-content: center;
            gap: 0.6rem;
            }

            .hero-cta .btn-primary,
            .hero-cta .cta-button.btn-primary {
            min-width: 160px;
            width: auto;
            }
        }
        @media (max-width: 768px) {
            .w-50 {
                width: 90%;
            }
        }
        .center {
            text-align: center;
        }

        .tag-container {
            margin: 1rem 0;
        }

        .section-title {
            color: #BBA175;
            margin-bottom: 1rem;
        }

        .cta-button {
            background: #BBA175;
            color: #0a0a0a;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Related Section Styles */
        .related-section {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            border-top: 3px solid #BBA175;
        }

        .related-section h2 {
            color: #BBA175;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .related-section p {
            color: #e5e5e5;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .related-section nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .related-section nav li {
            background: #2a2a2a;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .related-section nav li:hover {
            background: #3a3a3a;
            transform: translateY(-2px);
        }

        .related-section nav a {
            display: block;
            padding: 0.8rem 1.2rem;
            color: #e5e5e5;
            text-decoration: none;
            border-radius: 8px;
            transition: color 0.3s ease;
        }

        .related-section nav a:hover {
            color: #BBA175;
        }

        @media (max-width: 768px) {
            .related-section nav ul {
                flex-direction: column;
            }
        }

        /* Footer Styles */
        .footer {
            background: #333333;
            color: #e5e5e5;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            border-top: 1px solid #444444;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start;
            /* center the footer area within the container when there's extra space */
            justify-content: center;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-description {
            grid-column: 1 / -1;
            margin-bottom: 2rem;
        }

        .footer-title {
            color: #BBA175;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .footer-text {
            text-align: center;
            line-height: 1.6;
            color: #e5e5e5;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-column h3 {
            color: #BBA175;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-link {
            color: #e5e5e5;
            text-decoration: none;
            padding: 0.4rem 0;
            transition: color 0.3s ease;
            position: relative;
            padding-left: 1rem;
        }

        .footer-link::before {
            content: '»';
            position: absolute;
            left: 0;
            color: #BBA175;
        }

        .footer-link:hover {
            color: #BBA175;
        }

        .footer-social {
            text-align: center;
        }

        

        /* Make footer more centered on narrow screens and ensure columns behave responsively */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                justify-items: center; /* center items horizontally */
                text-align: center;
            }

            .footer-main {
                grid-template-columns: 1fr; /* stack footer columns vertically on small screens */
            }

            .footer-description {
                grid-column: 1 / -1;
            }
        }

        .footer-social h3 {
            color: #BBA175;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            text-decoration: none;
            color: white;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-3px);
            opacity: 0.8;
        }

        .social-facebook {
            background: #1877f2;
        }

        .social-twitter {
            background: #1da1f2;
        }

        .social-youtube {
            background: #ff0000;
        }

        .footer-sitemap {
            margin-top: 1rem;
        }

        .sitemap-link {
            color: #ff4081;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .sitemap-link:hover {
            color: #BBA175;
        }

        /* Responsive Design for Footer */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-title {
                font-size: 1.5rem;
            }

            .social-links {
                gap: 0.8rem;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }
        }

        /* Table Styles with Gold Borders */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            background: #1a1a1a;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        table th,
        table td {
            padding: 1rem;
            text-align: left;
            border: 2px solid #BBA175;
            color: #e5e5e5;
        }

        table th {
            background: #2a2a2a;
            color: #BBA175;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        table tbody tr {
            background: #1a1a1a;
            transition: background-color 0.3s ease;
        }

        table tbody tr:hover {
            background: #2a2a2a;
        }

        table tbody tr:nth-child(even) {
            background: #151515;
        }

        table tbody tr:nth-child(even):hover {
            background: #252525;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0.5rem;
            }

            h1 {
                font-size: 2rem;
            }

            .vertical-tabs {
                flex-direction: column;
            }

            .vertical-tab-labels {
                width: 100%;
                flex-direction: row;
                overflow-x: auto;
            }

            .vertical-tab-label {
                white-space: nowrap;
                min-width: 250px;
            }

            /* Responsive table styles */
            table {
                font-size: 0.9rem;
            }

            table th,
            table td {
                padding: 0.75rem 0.5rem;
            }
        }