/* =====================================================
   WL HEADER – COMPLETELY ISOLATED CSS
===================================================== */

.wl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    z-index: 1000;

    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.98),
        rgba(0,0,0,0.98)
    );

    border-bottom: 2px solid #ff1a1a;
    backdrop-filter: blur(8px);

    box-shadow: 0 0 20px rgba(255,26,26,0.3);
}

.wl-header-inner {
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= BRAND ================= */

.wl-brand-link {
    text-decoration: none;
}

.wl-brand-text {
    display: flex;
    gap: 4px;
    font-weight: 700;
}

.wl-brand-name {
    color: #fff;
    font-size: 20px;
}

.wl-brand-sub {
    color: #ff1a1a;
    font-size: 20px;
}

/* ================= NAV ================= */

.wl-nav {
    display: flex;
    gap: 18px;
}

.wl-nav a {
    color: #b5b8c9;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.wl-nav a:hover,
.wl-nav a.is-active {
    color: #ff1a1a;
    background: rgba(255,26,26,0.25);
    box-shadow: 0 0 10px rgba(255,26,26,0.4);
}

/* ================= ACTIONS ================= */

.wl-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ================= BUTTONS ================= */

.wl-btn {
    height: 34px;
    padding: 0 18px;
    min-width: 92px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    color: #fff;
    text-decoration: none;
    cursor: pointer;

    border-radius: 999px;
    border: 1px solid rgba(255,26,26,0.35);

    background: linear-gradient(
        180deg,
        rgba(20,20,20,0.95),
        rgba(10,10,10,0.95)
    );

    transition: all 0.25s ease;
}

.wl-btn:hover {
    background: linear-gradient(
        180deg,
        rgba(255,26,26,0.18),
        rgba(120,10,10,0.35)
    );

    border-color: #ff1a1a;
    box-shadow: 0 0 20px rgba(255,26,26,0.6);
}

.wl-btn-accent {
    border-color: rgba(255,26,26,0.6);
    box-shadow: 0 0 12px rgba(255,26,26,0.4);
}

/* ================= LIVE ================= */

.wl-live-badge {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff1a1a, #ff4400);
    box-shadow: 0 0 20px rgba(255,26,26,0.6);
}

/* ================= BURGER ================= */

.wl-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.wl-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* ================= MOBILE ================= */

.wl-mobile-nav {
    display: none;
    flex-direction: column;
    background: #0a0a0a;
    border-top: 2px solid #ff1a1a;
}

.wl-mobile-nav a,
.wl-mobile-link {
    padding: 16px 32px;
    color: #fff;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .wl-nav {
        display: none;
    }
    .wl-burger {
        display: block;
    }
}