/* Dashboard page styles — extracted from inline + hero additions */

/* ── Hero Section ────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #eff6ff 100%);
    border-radius: 28px;
    padding: 48px 40px;
    margin-bottom: 40px;
    border: 1px solid #e0f2fe;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3b82f6;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 1.9rem;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 12px 0;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.hero-desc {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 28px 0;
    line-height: 1.7;
    max-width: 560px;
}

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .hero-section {
        padding: 32px 24px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-stats {
        gap: 8px;
    }
    .hero-stat {
        padding: 8px 14px;
        min-width: 70px;
    }
}

/* ── SnackPlay Intro ─────────────────────────────────────────── */
.snackplay-intro {
    margin-bottom: 40px;
    border-left: 4px solid #ff5722;
    padding: 24px 28px;
}

.snackplay-intro-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.snackplay-intro-text {
    flex: 1;
    min-width: 280px;
}

.snackplay-tag {
    display: inline-block;
    background: #fff1f2;
    color: #ff5722;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #ffe4e6;
    margin-bottom: 10px;
}

.snackplay-intro-text h2 {
    margin: 0 0 8px 0;
    font-size: 1.35rem;
    color: #1e293b;
    display: inline;
}

.snackplay-subtitle {
    font-weight: 600;
    color: #475569;
    margin: 0 0 12px 0;
    font-size: 1rem;
}

.snackplay-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.snackplay-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.snackplay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.snackplay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.snackplay-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.snackplay-logo {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.snackplay-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.snackplay-logo-label {
    font-weight: 800;
    font-size: 0.85rem;
    color: #ff5722;
    letter-spacing: 0.5px;
}

/* ── Menu Sections ───────────────────────────────────────────── */
.menu-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 4px solid #3b82f6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-count {
    font-size: 0.72rem;
    font-weight: 700;
    color: #3b82f6;
    background: #eff6ff;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #bfdbfe;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.menu-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.menu-card a {
    text-decoration: none;
    color: #334155;
    display: block;
}

.menu-card .icon {
    font-size: 48px;
    margin-bottom: 14px;
    display: inline-block;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.06));
    transition: transform 0.2s;
}

.menu-card:hover .icon {
    transform: scale(1.1);
}

.menu-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #1e293b;
}

.menu-card p {
    font-size: 0.83rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .menu-card {
        padding: 18px 16px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 16px;
    }
    .menu-card .icon {
        margin-bottom: 0;
        font-size: 36px;
        flex-shrink: 0;
    }
    .menu-card h3 {
        font-size: 1rem;
    }
}
