
/* Tablet Adaptation */
@media (min-width: 768px) {
    /* Status Bar */
    .status-bar {
        font-size: 18px;
        padding: 15px 30px;
    }

    /* Header */
    .nav-header {
        padding: 20px 30px;
    }
    .nav-header h1 {
        font-size: 28px;
    }
    .icon-btn svg {
        width: 32px;
        height: 32px;
    }

    /* Top Cards */
    .top-cards {
        gap: 25px;
        margin-bottom: 40px;
    }
    .card {
        height: 200px; /* Taller cards */
        padding: 30px 20px;
    }
    .card-logo-img, .pet-logo-img {
        width: 90px;
        height: 90px;
    }
    .game-logo-img {
        width: 60px;
        height: 60px;
    }
    .card-label {
        font-size: 22px;
        padding: 8px 20px;
    }
    .card-sublabel {
        font-size: 16px;
        margin-top: 10px;
    }
    .card-cyan .card-sublabel {
        font-size: 16px;
        top: 18px;
    }

    /* Divider */
    .section-divider {
        font-size: 24px;
        margin-bottom: 35px;
    }

    /* Grid Menu */
    .grid-menu {
        /* Adapt columns: 3 columns on tablet landscape/large portrait */
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }
    .grid-item {
        height: 140px; /* Taller buttons */
        font-size: 24px;
        border-radius: 20px;
    }

    /* Bottom Actions */
    .bottom-actions {
        bottom: 50px;
        padding: 0 60px;
    }
    .action-btn {
        width: 80px;
        height: 80px;
    }
    .action-btn svg {
        width: 36px;
        height: 36px;
    }
}
