:root {
    --primary-color: #ff3e3e;
    --secondary-color: #1a1a1a;
    --background-color: #0f0f0f;
    --text-color: #e0e0e0;
    --accent-color: #2d2d2d;
    --hover-color: #3d3d3d;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Layout */
.container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.container.no-sidebar {
    display: block;
    max-width: 1000px;
}

/* Sidebar */
aside {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.8rem;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.sidebar-list a:hover {
    background-color: var(--accent-color);
}

/* Main Content */
main {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #fff;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.match-card {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.match-time {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.match-teams {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.match-league {
    font-size: 0.9rem;
    color: #888;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.article-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
}

/* FAQ */
.faq-item {
    background: var(--accent-color);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 6px;
}

.faq-question {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid var(--accent-color);
}

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

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 1rem;
        border-bottom: 1px solid var(--accent-color);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    aside {
        display: none;
        /* Optional: hide sidebar on mobile or move to bottom */
    }
}