/* PREMIUM TICKET HEADERS (Dashed Border) [LOCKED]
   Status: FINALIZED
   DO NOT MODIFY DESIGN */

/* Base Header Style */
.premium-header {
    position: relative;
    margin-bottom: 20px;
    padding: 8px;
    /* Space for the dashed border */
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 10px;
    /* Rounded outer corners */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    /* Block to allow internal structure */
    text-align: left;
    border: none;
    color: #fff;
    min-width: 200px;
}

/* Internal Dashed Container */
.premium-header .header-content {
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    /* Slightly smaller radius */
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Main Title */
.premium-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

/* Subtitle */
.premium-header small {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 2px;
    letter-spacing: 1px;
}

/* Hide Icons Globally */
.header-icon {
    display: none !important;
}

/* Style 1: HOT NEWS (Red/Maroon) */
.header-hot-news {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
}

/* Style 2: BERITA PILIHAN (Blue) */
.header-pilihan {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    box-shadow: 0 4px 15px rgba(33, 147, 176, 0.3);
}

/* Style 3: TERPOPULER (Yellow/Orange) */
.header-terpopuler {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    box-shadow: 0 4px 15px rgba(245, 175, 25, 0.3);
}

/* Style 4: GALERI (Purple) */
.header-gallery {
    background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
    box-shadow: 0 4px 15px rgba(208, 78, 214, 0.3);
}

/* Style 5: POLLING (Blue) */
.header-polling {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

/* Style 6: LAPORAN (Red) */
.header-laporan {
    background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%);
    box-shadow: 0 4px 15px rgba(239, 71, 58, 0.3);
}

/* Style 7: SOROTAN UTAMA (Dark Blue) */
.header-gradient-blue {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

/* Style 8: TRENDING (Orange) */
.header-neon {
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
    box-shadow: 0 4px 15px rgba(255, 94, 98, 0.3);
    border: none;
}

.header-neon span.num {
    display: none;
}

/* PREMIUM BADGE FOR HOT NEWS ITEM (Keep existing) */
.badge-premium-hot {
    display: inline-block !important;
    background: linear-gradient(45deg, #ff0000, #ff5e00) !important;
    color: white !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 5px rgba(255, 69, 0, 0.4) !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px !important;
    animation: pulse-red 2s infinite !important;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}