.section-divider {
    width: 100vw;
    height: 1px;
    background: rgba(100, 140, 255, 0.15);
}

.games-list {
    display: flex;
    flex-direction: column;
}

.game-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 5%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.game-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.game-media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(100, 140, 255, 0.2);
    position: relative;
}

.game-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-media section {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.game-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: #e8eaf6;
    margin-bottom: 6px;
}

.game-genre {
    font-size: 13px;
    color: #00bfff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.game-tag {
    font-size: 16px;
    color: #e05555;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.game-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.8;
    color: #c0ccff;
    margin-bottom: 28px;
}

.game-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.steam-widget {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.game-btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(100, 140, 255, 0.4);
    color: #c0ccff;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.game-btn:hover {
    background: rgba(100, 140, 255, 0.1);
    border-color: #7a9fd4;
    color: #e8eaf6;
}

.game-btn.primary {
    background: transparent;
    border: 1px solid #e05555;
    color: #e05555;
}

.game-btn.primary:hover {
    background: #e05555;
    color: #fff;
}

@media (max-width: 900px) {
    .game-item {
        grid-template-columns: 1fr;
        padding: 60px 5%;
    }

    .game-media {
        order: -1;
    }
}

@media (max-width: 600px) {
    .game-buttons {
        flex-direction: column;
        align-items: center;
    }

    .game-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .steam-widget iframe {
        width: 100%;
        max-width: 100%;
    }
}