
.trending {
    margin-bottom: 3rem;
    position: relative;
}

.title {
    font-size: 1.8rem;
    color: #c8d674;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.scroll-container {
    position: relative;
    width: 100%;
    padding: 0 40px;
}
.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
}

.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.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-row {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #8B5CF6 transparent;
}


.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.scroll-button:hover {
    background: rgba(139, 92, 246, 0.5);
}

.scroll-button.left {
    left: 0;
}

.scroll-button.right {
    right: 0;
}

.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;
    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-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-content {
    transform: translateY(20px);
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.game-card:hover .game-card-content {
    transform: translateY(0);
    opacity: 1;
}
.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: white;
}

.game-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}
.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;
}
.release-info {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.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: #8B5CF6;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 0.5rem;
}




.winner {
    margin-top: auto;
}

.winner h4 {
    color: #ECDFCC;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.winner p {
    color: rgba(236, 223, 204, 0.7);
    font-size: 0.9rem;
}

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

.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: #8B5CF6;
    margin-bottom: 1rem;
}

.news-grid-section {
    margin-bottom: 4rem;
}

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

.news-item {
    background: rgba(236, 223, 204, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.timestamp {
    display: block;
    margin-top: 1rem;
    color: rgba(236, 223, 204, 0.6);
    font-size: 0.875rem;
}

.trending-topics {
    margin-bottom: 4rem;
}

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

.topic-card {
    background: rgba(236, 223, 204, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

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

.trend-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.9rem;
    color: rgba(149, 0, 255, 0.8);
}

@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;
    }

    .scroll-button {
        width: 30px;
        height: 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;
    }

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

.featured-article {
    margin-bottom: 4rem;
    background: rgba(236, 223, 204, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.article-hero {
    position: relative;
    height: 500px;
}

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

.viback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; 
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.article-content {
    padding: 2rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(236, 223, 204, 0.9);
}

.article-details {
    font-size: 1rem;
    line-height: 1.6;
}
.game-awards-section {
    margin-bottom: 4rem;
    background: rgba(60, 61, 55, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #ECDFCC;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #8B5CF6;
}

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

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