.phpd-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

.phpd-section h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 10px;
}

.phpd-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 35px;
}

.phpd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.phpd-single-wrap {
    max-width: 520px;
    margin: 25px auto;
    font-family: Arial, Helvetica, sans-serif;
}

.phpd-game-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phpd-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.phpd-age {
    display: inline-block;
    background: #eef4ff;
    color: #2454b8;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.phpd-game-card h3 {
    font-size: 26px;
    margin: 0 0 8px;
    color: #111;
}

.phpd-category {
    font-size: 15px;
    font-weight: 700;
    color: #555;
    margin-bottom: 14px;
}

.phpd-game-card p {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 12px;
}

.phpd-benefit {
    background: #f7f7f7;
    padding: 12px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .phpd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .phpd-grid {
        grid-template-columns: 1fr;
    }

    .phpd-section h2 {
        font-size: 28px;
    }

    .phpd-game-card h3 {
        font-size: 23px;
    }
}
