/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 20px;
}

.menu-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Menu Card */
.menu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-card.available:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.menu-card.locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.menu-card.locked:hover {
    transform: none;
}

/* Card Header */
.card-header {
    padding: 30px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-header.green {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.card-header.orange {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

.card-header.purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.card-icon {
    font-size: 4rem;
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Card Body */
.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

/* Progress Bar */
.card-progress {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: #888;
}

/* Stars */
.card-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-stars i {
    color: #ddd;
    font-size: 1.2rem;
}

.card-stars i.filled {
    color: #ffd700;
}

.star-count {
    margin-left: 8px;
    font-size: 0.9rem;
    color: #888;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 968px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-container {
        margin-top: 70px;
    }

    .menu-title {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-icon {
        font-size: 3rem;
    }
}