:root {
    --pds-orange: #FF8C00;
    --pds-orange-glow: rgba(255, 140, 0, 0.3);
    --pds-bg-dark: #0b0d0e;
    --pds-panel: rgba(20, 22, 24, 0.9);
    --pds-border: #1f2937;
}

body {
    background-color: var(--pds-bg-dark);
    color: #d1d5db;
    font-family: 'JetBrains Mono', monospace;
    background-image: radial-gradient(circle at center, #1a1c1e 0%, #0b0d0e 100%);
    overflow-x: hidden;
}

/* Typography */
.stencil { font-family: 'Saira Stencil One', cursive; }
.accent-text { color: var(--pds-orange); text-shadow: 0 0 10px var(--pds-orange-glow); }
.accent-bg { background-color: var(--pds-orange); }

/* HUD Elements */
.hud-border {
    border: 1px solid var(--pds-border);
    position: relative;
    background: var(--pds-panel);
}

/* Decorative Corner Brackets */
.hud-border::before, .hud-border::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: var(--pds-orange);
    border-style: solid;
    pointer-events: none;
}

.hud-border::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hud-border::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* Scanline Animation */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 5;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 140, 0, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100%; }
}

/* System Alert (Classified/Error) */
.system-alert {
    background: repeating-linear-gradient(
        45deg,
        rgba(220, 38, 38, 0.05),
        rgba(220, 38, 38, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Locked Shop State */
.locked-overlay {
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.85);
    z-index: 50;
    transition: all 0.5s ease;
}

/* Ensure the container doesn't hide the video */
.hud-border.hero-section {
    background: transparent !important; 
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0; /* Sits at the very bottom */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Ensure the text is visible over the video */
.hero-section .relative.z-10 {
    z-index: 10;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 2px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #f97316; /* Orange color */
}