.game-full-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.games-page-header {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.game-full-section:first-of-type {
    padding-top: 180px;
}

.game-section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: 0;
}

.game-full-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.game-content-wrap {
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.vertical-game-card {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vertical-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-image-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vertical-game-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-info-wrap {
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.card-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .games-page-header .section-title {
        display: block !important;
        visibility: visible;
        opacity: 1;
    }

    .card-info-wrap {
        padding: 25px;
    }
    .card-title {
        font-size: 1.8rem;
    }
    .card-desc {
        font-size: 1rem;
    }

    .game-full-section {
        min-height: auto;
        padding-top: 80px;
    }

    .games-page-header {
        top: 80px;
    }
    .game-full-section:first-of-type {
        padding-top: 140px;
    }
}
