.level-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.level-card {
    position: relative;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-card-overlay {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    width: 100%;
    color: white;
}

.level-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.9rem;
    color: #ffffff;
}

.level-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .level-card-container {
        grid-template-columns: 1fr;
    }
}
