.app-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

.app-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.app-card:active {
    transform: scale(0.96);
    background: #f9f9f9;
}

.app-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.app-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.app-desc {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}