.games-grid-section {
    margin: 40px 0 30px 0;
    text-align: center;
}

.games-grid-title {
    font-size: 2em;
    margin-bottom: 40px !important;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
    justify-items: center;
}

.game-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    width: 340px;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* vertical center */
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    text-align: center;
    padding-left: 15px;
}


.game-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1em;
    flex-shrink: 0;
    margin-right: 10px;
}

.game-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.emoji-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-title {
    font-weight: 600;
    color: #222;
    margin-top: 0;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}

.welcome {
    padding: 0 !important;
}


.games-file-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
    margin: 40px 0 30px 0;
}

.file-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 10px 0 rgba(80, 80, 120, 0.06);
    padding: 18px 22px;
    text-decoration: none;
    transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
    min-height: 80px;
    gap: 18px;
}

.file-card:hover {
    box-shadow: 0 6px 24px 0 rgba(80, 80, 120, 0.13);
    border-color: #c7d2fe;
    transform: translateY(-3px) scale(1.01);
}

.file-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    border: 2.5px solid #e5e7eb;
    flex-shrink: 0;
}

.file-icon-yellow {
    border-color: #ffe066;
}

.file-icon-blue {
    border-color: #74c0fc;
}

.file-icon-pink {
    border-color: #faa2c1;
}

.file-icon-black {
    border-color: #495057;
}

.file-icon-green {
    border-color: #63e6be;
}

.file-icon-gold {
    border-color: #ffd43b;
}

.file-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.file-title {
    font-size: 1.13em;
    font-weight: 700;
    color: #232323;
    margin-bottom: 2px;
    text-align: left;
}

.file-desc {
    font-size: 0.98em;
    color: #6b7280;
    font-weight: 400;
    margin-top: 0;
}

@media (max-width: 700px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 18px 0;
    }

    .game-box {
        width: 90vw;
        max-width: 320px;
        min-height: 120px;
    }

    .content {
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .games-file-grid {
        grid-template-columns: 1fr;
    }

    .file-card {
        width: 90%;
        max-width: 90%;
        margin: auto;
        text-align: left;
    }
}