/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-3it3kelyy0] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3it3kelyy0] {
    flex: 1;
}

.sidebar[b-3it3kelyy0] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3it3kelyy0] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3it3kelyy0]  a, .top-row[b-3it3kelyy0]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3it3kelyy0]  a:hover, .top-row[b-3it3kelyy0]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3it3kelyy0]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3it3kelyy0] {
        justify-content: space-between;
    }

    .top-row[b-3it3kelyy0]  a, .top-row[b-3it3kelyy0]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-3it3kelyy0] {
        flex-direction: row;
    }

    .sidebar[b-3it3kelyy0] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3it3kelyy0] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-3it3kelyy0]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-3it3kelyy0], article[b-3it3kelyy0] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Index.razor.rz.scp.css */

.border-gain[b-xi2bqv44f5] {
    border-top: 3px solid var(--terminal) !important;
}

.border-loss[b-xi2bqv44f5] {
    border-top: 3px solid var(--hazard) !important;
}

.data-grid-vision[b-xi2bqv44f5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 4px;
}

.data-item label[b-xi2bqv44f5] {
    display: block;
    font-size: 0.65rem;
    color: var(--text-dim);
    font-weight: 800;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.data-item span[b-xi2bqv44f5] {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 800;
}


/* --- HUNT HUD STYLING --- */
.hunt-hud-container[b-xi2bqv44f5] {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.04) 0%, transparent 70%);
}

/* Radar Logic */
.radar-box[b-xi2bqv44f5] {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 2.5rem;
}

.radar-svg[b-xi2bqv44f5] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.15));
}

.radar-ring-outer[b-xi2bqv44f5] {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1;
    opacity: 0.2;
}

.radar-ring-inner[b-xi2bqv44f5] {
    fill: none;
    stroke: var(--accent);
    stroke-width: 0.5;
    opacity: 0.15;
}

.radar-axis[b-xi2bqv44f5] {
    stroke: var(--accent);
    stroke-width: 0.5;
    opacity: 0.1;
}

.radar-scanner[b-xi2bqv44f5] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 204, 0, 0.15) 360deg);
    border-radius: 50%;
    animation: rotate-radar 5s linear infinite;
}

@@keyframes rotate-radar {
    from[b-xi2bqv44f5] {
        transform: rotate(0deg);
    }

    to[b-xi2bqv44f5] {
        transform: rotate(360deg);
    }
}

/* Content Styling */
.hud-title-active[b-xi2bqv44f5] {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--text-head);
    margin-bottom: 0.8rem;
}

.hud-stats[b-xi2bqv44f5] {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.hud-ticker-msg[b-xi2bqv44f5] {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 4px;
    opacity: 0.5;
}

.hud-pulse-dot[b-xi2bqv44f5] {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--text-terminal);
    border-radius: 50%;
    margin-left: 12px;
    box-shadow: 0 0 12px var(--text-terminal);
    animation: pulse-dot 2s infinite;
}

@@keyframes pulse-dot {
    0%[b-xi2bqv44f5] {
        opacity: 1;
        transform: scale(1);
    }

    50%[b-xi2bqv44f5] {
        opacity: 0.4;
        transform: scale(1.3);
    }

    100%[b-xi2bqv44f5] {
        opacity: 1;
        transform: scale(1);
    }
}

/* Dormant HUD Styling */
.hud-icon-dim[b-xi2bqv44f5] {
    font-size: 4rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.hud-title-dormant[b-xi2bqv44f5] {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 12px;
    color: var(--text-dim);
}

.hud-subtitle[b-xi2bqv44f5] {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-body);
    margin-top: 10px;
}

.hud-subtext[b-xi2bqv44f5] {
    font-size: 0.55rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-top: 8px;
}
