.content {
    flex: 1;
    padding: 2rem;
    margin-left: 280px;
}

.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
}
.scroll-container {
    position: relative;
    width: 100%;
    padding: 0 40px;
}
.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.game-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #8B5CF6 transparent;
}
.game-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    padding: 1rem 0;
}
.game-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.game-card {
    flex: 0 0 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.game-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s ease;
}

.game-card:hover .game-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--button-text);
}

.game-card p {
    color: var(--button-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}
.game-card {
    flex: 0 0 400px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(60, 61, 55, 0.25);
    transition: transform 0.3s ease;
}

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

.game-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.watch-now {
    background-color: var(--button-tertiary);
    color: var(--button-text);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.watch-now:hover {
    background-color: var(--button-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.news-card {
    background: rgba(60, 61, 55, 0.25);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-card p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.team-stats,
.player-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    opacity: 0.7;
}

.read-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: var(--accent);
    color: var(--button-text);
    width: 100%;
    margin-top: 1rem;
}

.read-more:hover {
    transform: translateY(-2px);
}

.game-awards-section {
    margin-bottom: 4rem;
    background: rgba(60, 61, 55, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.awards-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.major-award {
    grid-column: 1 / -1;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.major-award:hover {
    transform: scale(1.02);
}

.award-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: visible;
}

.award-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.award-overlay h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.awards-subgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: rgba(60, 61, 55, 0.25);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.award-thumbnail {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
}

.award-card h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.winner {
    margin-top: auto;
}

.winner h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.winner p {
    color: var(--text-primary);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .content {
        margin-left: 0;
    }

    .container {
        flex-direction: column;
    }

    .game-card {
        flex: 0 0 250px;
    }

    .game-card-image {
        height: 180px;
    }

    .scroll-container {
        padding: 0 30px;
    }

    .major-award {
        height: 300px;
    }

    .award-overlay h3 {
        font-size: 2rem;
    }

    .awards-subgrid {
        grid-template-columns: 1fr;
    }

    .award-thumbnail {
        height: 100px;
    }

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