/* Premium Hero Empty State */
.premium-hero-empty-state {
    background: linear-gradient(135deg, #FFD100 0%, #FFA000 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-state-content {
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.premium-hero-empty-state h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.premium-hero-empty-state p {
    font-size: 18px;
    color: #4A4A4A;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.premium-hero-empty-state .button-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #2C2C2C;
    color: #FFD100;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.premium-hero-empty-state .button-primary:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .premium-hero-empty-state {
        min-height: 300px;
        padding: 60px 20px;
    }

    .empty-state-icon {
        font-size: 60px;
    }

    .premium-hero-empty-state h2 {
        font-size: 28px;
    }

    .premium-hero-empty-state p {
        font-size: 16px;
    }
}