/* _content/RTOWebLMS/Components/Layout/MainLayout.razor.rz.scp.css */
/* === FORGE LAYOUT === */
.forge-layout[b-gj1lqvithh] {
    display: flex;
    min-height: 100vh;
    background: var(--forge-bg);
}

/* === SIDEBAR === */
.forge-sidebar[b-gj1lqvithh] {
    width: var(--forge-sidebar-width);
    background: var(--forge-sidebar-bg);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--forge-transition-slow);
}

/* === MAIN WRAPPER === */
.forge-main-wrapper[b-gj1lqvithh] {
    flex: 1;
    margin-left: var(--forge-sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left var(--forge-transition-slow);
}

/* === TOP BAR === */
.forge-topbar[b-gj1lqvithh] {
    height: var(--forge-topbar-height);
    background: var(--forge-topbar-bg);
    border-bottom: 1px solid var(--forge-topbar-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
}

.forge-topbar-left[b-gj1lqvithh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    max-width: 480px;
}

.forge-topbar-right[b-gj1lqvithh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.forge-sidebar-toggle[b-gj1lqvithh] {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--forge-slate-100);
    border-radius: var(--forge-radius-sm);
    color: var(--forge-text);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--forge-transition);
}

.forge-sidebar-toggle:hover[b-gj1lqvithh] {
    background: var(--forge-slate-200);
}

.forge-search-wrapper[b-gj1lqvithh] {
    flex: 1;
}

/* Restyle the existing SearchBar input */
.forge-search-wrapper[b-gj1lqvithh]  input,
.forge-search-wrapper[b-gj1lqvithh]  .form-control {
    border: 1.5px solid var(--forge-slate-200);
    border-radius: var(--forge-radius-xl);
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    font-size: 0.85rem;
    background: var(--forge-bg-sunken);
    transition: all var(--forge-transition);
    height: 40px;
}

.forge-search-wrapper[b-gj1lqvithh]  input:focus,
.forge-search-wrapper[b-gj1lqvithh]  .form-control:focus {
    border-color: var(--forge-amber-500);
    box-shadow: 0 0 0 3px var(--forge-ring);
    background: white;
}

/* === TOP BAR ICONS === */
.forge-topbar-icon[b-gj1lqvithh] {
    width: 38px;
    height: 38px;
    border-radius: var(--forge-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forge-text-secondary);
    font-size: 1.1rem;
    transition: all var(--forge-transition);
    text-decoration: none;
}

.forge-topbar-icon:hover[b-gj1lqvithh] {
    background: var(--forge-slate-100);
    color: var(--forge-text);
}

/* === USER PILL === */
.forge-user-pill[b-gj1lqvithh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem;
    padding-right: 0.75rem;
    border-radius: 100px;
    background: var(--forge-bg-sunken);
    border: 1px solid var(--forge-border);
    cursor: default;
}

.forge-avatar[b-gj1lqvithh] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forge-amber-500), var(--forge-amber-600));
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.forge-user-name[b-gj1lqvithh] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--forge-text);
    white-space: nowrap;
}

/* === CONTENT === */
.forge-content[b-gj1lqvithh] {
    flex: 1;
    overflow-y: auto;
}

.forge-page-body[b-gj1lqvithh] {
    padding: 1.75rem 2rem;
    max-width: 1400px;
}

/* === SIDEBAR OVERLAY (mobile) === */
.forge-sidebar-overlay[b-gj1lqvithh] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
    animation: forgeFadeIn 0.2s ease;
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .forge-sidebar[b-gj1lqvithh] {
        transform: translateX(-100%);
    }

    .forge-main-wrapper[b-gj1lqvithh] {
        margin-left: 0;
    }

    .forge-page-body[b-gj1lqvithh] {
        padding: 1.25rem 1rem;
    }
}

/* Show sidebar when toggled on mobile */
:global(.forge-layout:has(.forge-sidebar-overlay)) .forge-sidebar[b-gj1lqvithh] {
    transform: translateX(0);
}

@media (max-width: 575.98px) {
    .forge-topbar[b-gj1lqvithh] {
        padding: 0 1rem;
        height: 52px;
    }

    .forge-page-body[b-gj1lqvithh] {
        padding: 1rem 0.75rem;
    }
}

/* === ERROR UI === */
#blazor-error-ui[b-gj1lqvithh] {
    color-scheme: light only;
    background: var(--forge-danger-light);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
    font-size: 0.875rem;
    color: var(--forge-danger);
    border-top: 2px solid var(--forge-danger);
}

#blazor-error-ui .dismiss[b-gj1lqvithh] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/RTOWebLMS/Components/Layout/NavMenu.razor.rz.scp.css */
/* === FORGE SIDEBAR NAV === */

/* --- Brand --- */
.forge-nav-brand[b-84s5ahs1t0] {
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.forge-brand-link[b-84s5ahs1t0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.forge-brand-link:hover[b-84s5ahs1t0] {
    color: white;
}

.forge-brand-icon[b-84s5ahs1t0] {
    flex-shrink: 0;
}

.forge-brand-fallback[b-84s5ahs1t0] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.forge-brand-text[b-84s5ahs1t0] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.forge-brand-name[b-84s5ahs1t0] {
    font-weight: 700;
    font-size: 1rem;
    color: #f1f5f9;
    letter-spacing: -0.01em;
}

.forge-brand-sub[b-84s5ahs1t0] {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* --- Mobile Toggle --- */
.navbar-toggler[b-84s5ahs1t0] {
    appearance: none;
    cursor: pointer;
    width: 3rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.06);
    transition: all 0.15s ease;
}

.navbar-toggler:checked[b-84s5ahs1t0] {
    background-color: rgba(255, 255, 255, 0.12);
}

.nav-scrollable[b-84s5ahs1t0] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-84s5ahs1t0] {
    display: block;
}

/* --- Nav Container --- */
.forge-nav[b-84s5ahs1t0] {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0;
}

/* --- Section Header --- */
[b-84s5ahs1t0] .forge-nav-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.625rem 1.25rem 0.375rem;
    border: none;
    background: none;
    cursor: pointer;
    margin-top: 0.25rem;
}

[b-84s5ahs1t0] .forge-nav-section-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.15s;
}

[b-84s5ahs1t0] .forge-nav-section-header:hover .forge-nav-section-title {
    color: rgba(255, 255, 255, 0.5);
}

[b-84s5ahs1t0] .forge-nav-chevron {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, color 0.15s;
}

[b-84s5ahs1t0] .forge-nav-section-header:hover .forge-nav-chevron {
    color: rgba(255, 255, 255, 0.4);
}

/* --- Section Body --- */
[b-84s5ahs1t0] .forge-nav-section-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 0.125rem 0;
}

/* --- Nav Link --- */
[b-84s5ahs1t0] .forge-nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1.25rem;
    margin: 0 0.625rem;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.835rem;
    font-weight: 500;
    transition: all 0.15s ease;
    position: relative;
    line-height: 1.3;
}

[b-84s5ahs1t0] .forge-nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.06);
}

[b-84s5ahs1t0] .forge-nav-link.active {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    font-weight: 600;
}

[b-84s5ahs1t0] .forge-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #f59e0b;
    border-radius: 0 3px 3px 0;
}

[b-84s5ahs1t0] .forge-nav-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.7;
    /* Reset the old bi background-image approach */
    background: none !important;
    display: inline !important;
    position: static !important;
    margin-right: 0 !important;
    height: auto !important;
}

[b-84s5ahs1t0] .forge-nav-link.active .forge-nav-icon {
    opacity: 1;
}

/* --- Footer --- */
.forge-nav-footer[b-84s5ahs1t0] {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.forge-nav-logout[b-84s5ahs1t0] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.625rem;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.835rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.forge-nav-logout:hover[b-84s5ahs1t0] {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.forge-nav-user-info[b-84s5ahs1t0] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    padding: 0 0.625rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === DESKTOP === */
@media (min-width: 641px) {
    .navbar-toggler[b-84s5ahs1t0] {
        display: none;
    }

    .nav-scrollable[b-84s5ahs1t0] {
        display: block;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
    }

    .forge-nav[b-84s5ahs1t0] {
        min-height: 100%;
    }
}
/* _content/RTOWebLMS/Components/Pages/FindTheHazards.razor.rz.scp.css */
/* ── Wrapper ─────────────────────────────────────── */
.fth-wrapper[b-5j3pac58x3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%);
    min-height: 100%;
    color: white;
}

/* ── Header ──────────────────────────────────────── */
.fth-title[b-5j3pac58x3] {
    font-family: 'Bangers', 'Impact', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #FFD700;
    text-shadow: 3px 3px 0 #e63946, 5px 5px 0 rgba(0,0,0,0.4);
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 4px;
}

.fth-subtitle[b-5j3pac58x3] {
    color: #a8dadc;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.fth-scoreboard[b-5j3pac58x3] {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.score-chip[b-5j3pac58x3] {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 5px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.score-val[b-5j3pac58x3] {
    color: #FFD700;
    font-size: 1.2rem;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.progress-bar[b-5j3pac58x3] {
    width: min(860px, 95vw);
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill[b-5j3pac58x3] {
    height: 100%;
    background: linear-gradient(90deg, #e63946, #FFD700);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* ── Game container ───────────────────────────────── */
.fth-game-container[b-5j3pac58x3] {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6),
                0 0 0 3px #FFD700,
                0 0 0 6px #e63946;
    overflow: hidden;
}

.fth-game[b-5j3pac58x3] {
    position: relative;
    cursor: crosshair;
    line-height: 0;
}

.fth-game img[b-5j3pac58x3] {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* ── Hotspots ─────────────────────────────────────── */
.hotspot[b-5j3pac58x3] {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot.found[b-5j3pac58x3] {
    background: rgba(56, 200, 100, 0.3);
    border: 2.5px solid #38C864;
    animation: pulse-found-b-5j3pac58x3 0.8s ease-out;
}

.hotspot-number[b-5j3pac58x3] {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    background: #38C864;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@keyframes pulse-found-b-5j3pac58x3 {
    0%   { box-shadow: 0 0 0 0 rgba(56,200,100,0.8); }
    100% { box-shadow: 0 0 0 18px rgba(56,200,100,0); }
}

/* ── Miss flash ───────────────────────────────────── */
.miss-flash[b-5j3pac58x3] {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(230, 57, 70, 0.35);
    border: 2px solid #e63946;
    pointer-events: none;
    animation: miss-anim-b-5j3pac58x3 0.65s ease-out forwards;
}

@keyframes miss-anim-b-5j3pac58x3 {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2.2); }
}

/* ── Tooltip ──────────────────────────────────────── */
.fth-tooltip[b-5j3pac58x3] {
    max-width: min(340px, 90vw);
    width: 100%;
    background: linear-gradient(135deg, #1d3557, #0f3460);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 12px;
    color: #fff;
    font-size: 0.87rem;
    line-height: 1.55;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    animation: tooltip-in-b-5j3pac58x3 0.2s ease-out;
}

.fth-tooltip.is-new[b-5j3pac58x3] {
    border-color: #e63946;
}

@keyframes tooltip-in-b-5j3pac58x3 {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tooltip-header[b-5j3pac58x3] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFD700;
}

.tooltip-badge[b-5j3pac58x3] {
    background: #e63946;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ── Found list ───────────────────────────────────── */
.found-list[b-5j3pac58x3] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    max-width: 900px;
    justify-content: center;
}

.found-tag[b-5j3pac58x3] {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.76rem;
    color: #8ab3c5;
    font-weight: 600;
    transition: all 0.3s;
}

.found-tag.active[b-5j3pac58x3] {
    background: rgba(56,200,100,0.2);
    border-color: #38C864;
    color: #fff;
}

.fth-instructions[b-5j3pac58x3] {
    color: #607d8b;
    font-size: 0.78rem;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* ── Win overlay ──────────────────────────────────── */
.win-overlay[b-5j3pac58x3] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fade-in-b-5j3pac58x3 0.4s ease;
}

@keyframes fade-in-b-5j3pac58x3 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.win-box[b-5j3pac58x3] {
    background: linear-gradient(135deg, #1d3557, #0f3460);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px 48px;
    text-align: center;
    max-width: 460px;
    width: 90%;
    box-shadow: 0 0 80px rgba(255,215,0,0.25);
    animation: win-pop-b-5j3pac58x3 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes win-pop-b-5j3pac58x3 {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.win-trophy[b-5j3pac58x3] {
    font-size: 4rem;
    margin-bottom: 8px;
}

.win-box h2[b-5j3pac58x3] {
    font-family: 'Bangers', 'Impact', cursive;
    font-size: 3rem;
    color: #FFD700;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0 #e63946;
    margin-bottom: 12px;
}

.win-box p[b-5j3pac58x3] {
    color: #a8dadc;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-reset[b-5j3pac58x3] {
    background: #e63946;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 36px;
    font-family: 'Bangers', 'Impact', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.1s, background 0.2s;
    box-shadow: 0 4px 15px rgba(230,57,70,0.5);
}

.btn-reset:hover[b-5j3pac58x3] {
    background: #c1121f;
    transform: scale(1.05);
}
/* _content/RTOWebLMS/Components/Pages/SiteHazards.razor.rz.scp.css */
/* ── Wrapper ─────────────────────────────────────── */
.sh-wrapper[b-zf6u8gkmbw] {
    font-family: 'Segoe UI', 'Source Sans Pro', sans-serif;
    background: linear-gradient(160deg, #0d1117 0%, #0f1e2e 60%, #0d1117 100%);
    min-height: 100%;
    padding: 0 0 48px;
    color: #e6edf3;
}

/* ── Header ──────────────────────────────────────── */
.sh-header[b-zf6u8gkmbw] {
    background: linear-gradient(180deg, #0a0f15 0%, transparent 100%);
    border-bottom: 2px solid #FF6B00;
    padding: 32px 32px 24px;
    position: relative;
    overflow: hidden;
}

.sh-header[b-zf6u8gkmbw]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg, transparent, transparent 22px,
        rgba(255,107,0,0.025) 22px, rgba(255,107,0,0.025) 24px
    );
    pointer-events: none;
}

.sh-label[b-zf6u8gkmbw] {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #FF6B00;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.sh-title[b-zf6u8gkmbw] {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.sh-title span[b-zf6u8gkmbw] { color: #FF6B00; }

.sh-sub[b-zf6u8gkmbw] {
    color: #8b949e;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.sh-progress-row[b-zf6u8gkmbw] {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 500px;
}

.sh-progress-bar[b-zf6u8gkmbw] {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.sh-progress-fill[b-zf6u8gkmbw] {
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #FFD000);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.sh-progress-label[b-zf6u8gkmbw] {
    font-size: 0.8rem;
    color: #8b949e;
    white-space: nowrap;
    font-weight: 600;
}

/* ── Hazard Grid ─────────────────────────────────── */
.sh-grid[b-zf6u8gkmbw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2px;
    background: #21262d;
    border-top: 2px solid #21262d;
    padding: 2px;
}

/* ── Hazard Card ─────────────────────────────────── */
.sh-card[b-zf6u8gkmbw] {
    background: #161b22;
    padding: 22px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    transition: background 0.15s, transform 0.1s;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 2px;
}

.sh-card:hover[b-zf6u8gkmbw] {
    background: #1c2330;
    transform: translateY(-2px);
    z-index: 1;
}

.sh-card.active[b-zf6u8gkmbw] {
    background: #1c2330;
    border-color: #FF6B00;
}

.sh-card.viewed:not(.active)[b-zf6u8gkmbw] {
    background: #141a1f;
    opacity: 0.75;
}

.sh-card-icon[b-zf6u8gkmbw] {
    font-size: 2.2rem;
    line-height: 1;
}

.sh-card-name[b-zf6u8gkmbw] {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #c9d1d9;
}

.sh-card-level[b-zf6u8gkmbw] {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
}

.level-extreme[b-zf6u8gkmbw] {
    background: rgba(220, 30, 30, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(220,30,30,0.4);
}

.level-high[b-zf6u8gkmbw] {
    background: rgba(255, 107, 0, 0.15);
    color: #FF6B00;
    border: 1px solid rgba(255,107,0,0.3);
}

.level-medium[b-zf6u8gkmbw] {
    background: rgba(255, 208, 0, 0.12);
    color: #FFD000;
    border: 1px solid rgba(255,208,0,0.3);
}

.sh-viewed-tick[b-zf6u8gkmbw] {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #3fb950;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ── Detail Panel ────────────────────────────────── */
.sh-detail[b-zf6u8gkmbw] {
    margin: 2px 2px 0;
    background: #161b22;
    border-top: 3px solid #FF6B00;
    animation: detail-slide-b-zf6u8gkmbw 0.2s ease-out;
}

@keyframes detail-slide-b-zf6u8gkmbw {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sh-detail-inner[b-zf6u8gkmbw] {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 32px 32px;
}

.sh-detail-top[b-zf6u8gkmbw] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.sh-detail-icon[b-zf6u8gkmbw] {
    font-size: 2.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.sh-detail-title[b-zf6u8gkmbw] {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.sh-detail-badge[b-zf6u8gkmbw] {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 3px;
}

.sh-close[b-zf6u8gkmbw] {
    margin-left: auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid #30363d;
    color: #8b949e;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.sh-close:hover[b-zf6u8gkmbw] {
    background: rgba(255,107,0,0.15);
    color: #FF6B00;
    border-color: #FF6B00;
}

.sh-detail-desc[b-zf6u8gkmbw] {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #c9d1d9;
    margin-bottom: 22px;
    border-left: 3px solid #30363d;
    padding-left: 16px;
}

.sh-controls-heading[b-zf6u8gkmbw] {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 10px;
}

.sh-controls[b-zf6u8gkmbw] {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.sh-controls li[b-zf6u8gkmbw] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #c9d1d9;
    line-height: 1.5;
}

.sh-controls li[b-zf6u8gkmbw]::before {
    content: '▶';
    color: #FF6B00;
    font-size: 0.55rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ── Highlight box ───────────────────────────────── */
.sh-highlight[b-zf6u8gkmbw] {
    background: rgba(220, 30, 30, 0.1);
    border: 1px solid rgba(220,30,30,0.35);
    border-left: 4px solid #dc1e1e;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #f0a0a0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sh-highlight-icon[b-zf6u8gkmbw] {
    background: #dc1e1e;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Complete Banner ─────────────────────────────── */
.sh-complete[b-zf6u8gkmbw] {
    margin: 24px 16px 0;
    display: flex;
    justify-content: center;
    animation: detail-slide-b-zf6u8gkmbw 0.3s ease-out;
}

.sh-complete-inner[b-zf6u8gkmbw] {
    background: linear-gradient(135deg, #162a1a, #0f2212);
    border: 2px solid #3fb950;
    border-radius: 12px;
    padding: 32px 40px;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.sh-complete-icon[b-zf6u8gkmbw] { font-size: 3rem; margin-bottom: 8px; }

.sh-complete-title[b-zf6u8gkmbw] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3fb950;
    margin-bottom: 10px;
}

.sh-complete-inner p[b-zf6u8gkmbw] {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.sh-reset-btn[b-zf6u8gkmbw] {
    background: #FF6B00;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}

.sh-reset-btn:hover[b-zf6u8gkmbw] {
    background: #cc5500;
    transform: scale(1.03);
}
