/* ===================================================
   SHARED GLOBAL HEADER STYLES (100% UNIFIED & DYNAMIC)
   =================================================== */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 9, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 102, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 45px;
    min-height: 80px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 255, 102, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.site-header .header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.site-header .header-logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 255, 102, 0.5));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header .header-logo:hover img {
    transform: scale(1.08) rotate(3deg);
}
.site-header .logo-text-group {
    display: flex;
    flex-direction: column;
}
.site-header .logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
    display: block;
}
.site-header .logo-text span { 
    color: #00ff66; 
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.6);
}
.site-header .logo-subtag {
    font-size: 9.5px;
    font-weight: 700;
    color: #8b949e;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.site-header .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.site-header .live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: #00ff66;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.site-header .live-status-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00ff66;
    box-shadow: 0 0 8px #00ff66;
    animation: headerPulseGlow 1.5s infinite;
}
@keyframes headerPulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.site-header .shop-link {
    background: #00ff66;
    color: #040608;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: none !important; /* Zero outer glow/color bleed */
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.site-header .shop-link:hover {
    background: #00e65c;
    transform: none !important; /* No jumping/lifting on hover */
    box-shadow: none !important;
}

.site-header .header-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
    box-shadow: none !important;
    transform: none !important;
}
.site-header .header-social-btn.tg-btn {
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.4);
    color: #38bdf8;
}
.site-header .header-social-btn.tg-btn:hover {
    background: #0088cc;
    color: #fff;
}
.site-header .header-social-btn.yt-btn {
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.35);
    color: #ff4444;
}
.site-header .header-social-btn.yt-btn:hover {
    background: #ff0000;
    color: #fff;
}
.site-header .header-social-btn.wa-btn {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
}
.site-header .header-social-btn.wa-btn:hover {
    background: #25d366;
    color: #040608;
}

/* RESPONSIVE HEADER - EXACT SAME RULES FOR ALL PAGES */
@media (max-width: 768px) { 
    header.site-header { 
        padding: 10px 14px; 
        min-height: 60px;
    }
    .site-header .header-logo img { height: 34px; }
    .site-header .logo-text { font-size: 16px; }
    .site-header .logo-subtag { font-size: 8px; }
    .site-header .header-social-btn { display: none; }
    .site-header .live-status-pill { display: none; }
    .site-header .shop-link {
        padding: 10px 16px;
        font-size: 12px;
        gap: 4px;
        white-space: nowrap;
        box-shadow: none !important;
        transform: none !important;
    }
}
