/* ===================================
   FALLOUT 76 / VAULT-TEC THEME
   SevenSix Pro - Post-Apocalyptic Style
   =================================== */

@font-face {
    font-family: 'ShareTechMono';
    src: url('fonts/stm_reg.ttf') format('ttf'),
}

/* ============ ROOT VARIABLES ============ */
:root {
    --vault-yellow: #F6C553;
    --vault-gold: #D4AA00;
    --pip-boy-green: #00FFA3;
    --pip-boy-cyan: #00D4D4;
    --terminal-green: #00FF41;
    --rust-orange: #CC7722;
    --steel-blue: #4A6B7C;
    --worn-brown: #3E2E1E;
    --dark-metal: #1A1A1A;
    --aged-paper: #C4B89A;
    --warning-red: #FF3B3B;
    --vault-border: #8B7355;
}

/* ============ BODY & BACKGROUND ============ */
body {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 12px;
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1612 50%, #0D0D0D 100%);
    color: var(--aged-paper);
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background-size: cover;
    filter: sepia(0.3) brightness(0.6) contrast(1.1);
}

/* ============ CONTAINER ============ */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: absolute;
    margin: 0 auto; 
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1;
}

/* ============ HEADER ============ */
header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.logo {
    width: 150px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(246, 197, 83, 0.5));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 20px rgba(246, 197, 83, 0.8));
}

/* ============ TYPOGRAPHY ============ */
h1 {
    font-size: 24px;
    color: var(--vault-yellow);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(246, 197, 83, 0.8),
        0 0 20px rgba(246, 197, 83, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
}

h1::after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vault-gold), transparent);
    margin: 10px auto 0;
}

h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--rust-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(139, 106, 28, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ============ CONTAINERS ============ */
.login-container, .welcome-container {
    background: 
        linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98)),
        repeating-linear-gradient(
            0deg,
            rgba(139, 115, 85, 0.03) 0px,
            transparent 2px,
            transparent 4px,
            rgba(139, 115, 85, 0.03) 6px
        );
    padding: 35px;
    border: 3px solid var(--vault-border);
    border-radius: 2px;
    box-shadow: 
        0 0 30px rgba(246, 197, 83, 0.3),
        inset 0 0 100px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(139, 115, 85, 0.2),
        0 8px 30px rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
}

/* Vault-Tec Corner Brackets */
.login-container::before, .welcome-container::before,
.login-container::after, .welcome-container::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--vault-yellow);
}

.login-container::before, .welcome-container::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.login-container::after, .welcome-container::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.welcome-container:hover {
    box-shadow: 
        0 0 40px rgba(246, 197, 83, 0.5),
        inset 0 0 100px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(139, 115, 85, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.9);
    border-color: var(--vault-yellow);
}

/* ============ BUTTONS & LINKS ============ */
a {
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(180deg, var(--vault-gold), #B8960D);
    color: var(--dark-metal);
    border: 2px solid var(--vault-yellow);
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

a:hover {
    background: linear-gradient(180deg, var(--vault-yellow), var(--vault-gold));
    transform: translateY(-2px);
}

a:active {
    transform: translateY(2px);
}

a.green {
    background: linear-gradient(180deg, #00D4A3, #00A37D);
    border-color: var(--pip-boy-green);
    color: var(--dark-metal);
    box-shadow: 
        0 4px 0 #007D5D,
        0 6px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

a.green:hover {
    background: linear-gradient(180deg, var(--pip-boy-green), #00D4A3);
    box-shadow: 
        0 4px 0 #007D5D,
        0 6px 20px rgba(0, 255, 163, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

a.logout-button {
    margin-top: 20px;
    background: linear-gradient(180deg, var(--warning-red), #CC2222);
    border-color: #FF6B6B;
    color: #FFF;
}

a.logout-button:hover {
    background: linear-gradient(180deg, #FF5555, var(--warning-red));
}

/* ============ FORM INPUTS ============ */
label {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 10px;
    color: var(--aged-paper);
    display: inline-block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
textarea,
.license-key-input {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 7px;
    padding: 12px;
    margin: 0 0 15px 0;
    border: 2px solid var(--vault-border);
    background: rgba(20, 20, 20, 0.9);
    color: var(--vault-yellow);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 0 rgba(246, 197, 83, 0);
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
.license-key-input:focus {
    outline: none;
    border-color: var(--vault-yellow);
    background: rgba(25, 25, 25, 0.95);
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(246, 197, 83, 0.5);
}

input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder,
.license-key-input::placeholder {
    color: rgba(196, 184, 154, 0.5);
    text-transform: uppercase;
}

/* Input validation states */
input:invalid,
textarea:invalid,
select:invalid {
    border-color: var(--warning-red);
}

input:valid,
textarea:valid,
select:valid {
    border-color: var(--vault-border);
}

input.error,
textarea.error,
select.error {
    border-color: var(--warning-red);
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 59, 59, 0.5);
}

/* Disabled and readonly states */
input:disabled,
textarea:disabled,
select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(15, 15, 15, 0.9);
    color: rgba(196, 184, 154, 0.4);
}

input[readonly],
textarea[readonly] {
    background: rgba(15, 15, 15, 0.9);
    border-color: rgba(139, 115, 85, 0.5);
    cursor: default;
}

/* Number input - style spinner arrows */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Custom number input wrapper would be needed for styled buttons */
/* Browsers don't allow significant styling of native spin buttons */

/* Textarea specific styling */
textarea {
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    resize: vertical;
    min-height: 80px;
}

/* ============ SELECT DROPDOWNS ============ */
select {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 7px;
    padding: 10px 10px 10px 12px;
    margin: 0;
    border: 2px solid var(--vault-border);
    background: 
        linear-gradient(180deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98)),
        url('data:image/svg+xml;utf8,<svg fill="%23F6C553" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 5px center;
    background-size: auto, 20px;
    color: var(--vault-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 0 rgba(246, 197, 83, 0);
}

select:hover {
    border-color: var(--vault-gold);
    background-color: rgba(35, 30, 25, 0.95);
}

select:focus {
    outline: none;
    border-color: var(--vault-yellow);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(246, 197, 83, 0.5);
}

option {
    background: rgba(20, 20, 20, 0.98);
    color: var(--aged-paper);
    padding: 10px;
}

optgroup {
    background: rgba(30, 25, 20, 0.95);
    color: var(--pip-boy-cyan);
    font-weight: bold;
    font-size: 9px;
}

/* ============ CHECKBOXES ============ */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--vault-border);
    background: rgba(20, 20, 20, 0.9);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
}

input[type="checkbox"]:hover {
    border-color: var(--vault-gold);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 10px rgba(246, 197, 83, 0.3);
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--vault-gold), var(--rust-orange));
    border-color: var(--vault-yellow);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(246, 197, 83, 0.6);
}

input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--vault-yellow);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(246, 197, 83, 0.5);
}

/* ============ RADIO BUTTONS ============ */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--vault-border);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.9);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
}

input[type="radio"]:hover {
    border-color: var(--vault-gold);
}

input[type="radio"]:checked {
    background: rgba(20, 20, 20, 0.9);
    border-color: var(--vault-yellow);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(246, 197, 83, 0.6);
}

input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vault-yellow), var(--vault-gold));
    box-shadow: 0 0 8px rgba(246, 197, 83, 0.8);
}

input[type="radio"]:focus {
    outline: none;
    border-color: var(--vault-yellow);
}

/* ============ FILE UPLOAD ============ */
input[type="file"] {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 10px;
    padding: 10px;
    border: 2px solid var(--vault-border);
    background: rgba(20, 20, 20, 0.9);
    color: var(--aged-paper);
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 10px;
    padding: 8px 16px;
    margin-right: 10px;
    background: linear-gradient(180deg, var(--vault-gold), #B8960D);
    color: var(--dark-metal);
    border: 2px solid var(--vault-yellow);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(180deg, var(--vault-yellow), var(--vault-gold));
}

/* Input elements inside table cells */
td input[type="text"],
td input[type="number"],
td input[type="password"],
td input[type="email"],
td textarea,
td select {
    margin: 0;
}

td input[type="checkbox"],
td input[type="radio"] {
    margin: 0;
    vertical-align: middle;
}

/* ============ FIELDSETS & LEGENDS ============ */
fieldset {
    border: 2px solid var(--vault-border);
    background: rgba(20, 20, 20, 0.5);
    padding: 20px;
    margin: 20px 0;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

legend {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 11px;
    color: var(--vault-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 15px;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    border: 2px solid var(--vault-border);
}

/* ============ BUTTONS & SUBMIT ============ */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 11px;
    padding: 14px 24px;
    background: linear-gradient(180deg, var(--vault-gold), #B8960D);
    color: var(--dark-metal);
    border: 2px solid var(--vault-yellow);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
    background: linear-gradient(180deg, var(--vault-yellow), var(--vault-gold));
    box-shadow: 
        0 4px 0 #8B7300,
        0 6px 20px rgba(246, 197, 83, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #8B7300,
        0 3px 10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============ TABLES ============ */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid var(--vault-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

th, td {
    text-align: left;
    border: 1px solid rgba(139, 115, 85, 0.3);
    padding: 12px;
    transition: background-color 0.2s ease;
}

th {
    background: linear-gradient(180deg, #3A3020, #2A2010);
    color: var(--vault-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid var(--vault-gold);
}

td {
    background: rgba(30, 25, 20, 0.5);
}

tr:hover td {
    background: rgba(40, 35, 25, 0.7);
}

/* ============ INTERACTIVE ELEMENTS ============ */
.clickable {
    cursor: pointer;
    color: var(--terminal-green);
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(0, 212, 28, 0.5);
    transition: all 0.2s ease;
}

.clickable:hover {
    color: var(--pip-boy-green);
    text-shadow: 0 0 10px rgba(0, 255, 64, 0.8);
}

.copied {
    background-color: rgba(0, 255, 163, 0.2) !important;
    animation: copyFlash 0.5s ease;
}

@keyframes copyFlash {
    0% { background-color: rgba(0, 255, 163, 0.5); }
    100% { background-color: rgba(0, 255, 163, 0.2); }
}

/* ============ NAVIGATION ============ */
.navBar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 10px;
    line-height: 1.3;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid rgba(139, 115, 85, 0.3);
    border-bottom: 1px solid rgba(139, 115, 85, 0.3);
    margin: 10px 0;
}

/* ============ TOOLTIPS ============ */
.tooltip {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px dotted var(--vault-yellow);
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    white-space: pre-line;
    position: absolute;
    top: 2em;
    left: 3em;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.98), rgba(20, 20, 20, 1));
    color: var(--aged-paper);
    padding: 10px 15px;
    border: 2px solid var(--vault-border);
    border-radius: 0;
    z-index: 1000;
    font-size: 0.9em;
    width: 350px;
    max-width: 500px;
    box-shadow: 
        0 0 20px rgba(246, 197, 83, 0.3),
        0px 4px 15px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* ============ ERROR MESSAGES ============ */
.error {
    color: var(--warning-red);
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.8);
    background: rgba(255, 59, 59, 0.1);
    padding: 10px;
    border: 1px solid var(--warning-red);
    margin: 10px 0;
}

/* ============ HORIZONTAL RULES ============ */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--vault-border), 
        var(--vault-gold), 
        var(--vault-border), 
        transparent
    );
    margin: 20px 0;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .welcome-container, .login-container {
        padding: 25px;
        margin: 10px;
    }

    h1 {
        font-size: 18px;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 14px;
        letter-spacing: 1px;
    }

    body {
        font-size: 10px;
    }

    a {
        padding: 12px 18px;
        font-size: 10px;
    }

    .tooltip:hover::after {
        width: 250px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ============ SCROLLBARS ============ */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid var(--vault-border);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--vault-gold), #B8960D);
    border: 2px solid var(--vault-border);
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 10px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--vault-yellow), var(--vault-gold));
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 15px rgba(246, 197, 83, 0.6);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #B8960D, var(--vault-gold));
}

::-webkit-scrollbar-corner {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--vault-border);
}

/* Scrollbar buttons (arrows) */
::-webkit-scrollbar-button {
    width: 14px;
    height: 14px;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    border: 1px solid var(--vault-border);
    transition: all 0.2s ease;
}

::-webkit-scrollbar-button:hover {
    background: linear-gradient(180deg, var(--vault-gold), #B8960D);
}

::-webkit-scrollbar-button:active {
    background: linear-gradient(180deg, #B8960D, var(--vault-gold));
}

/* Up arrow */
::-webkit-scrollbar-button:vertical:decrement {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23F6C553" height="10" viewBox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path d="M5 2 L2 6 L8 6 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

/* Down arrow */
::-webkit-scrollbar-button:vertical:increment {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23F6C553" height="10" viewBox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path d="M5 8 L2 4 L8 4 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

/* Left arrow */
::-webkit-scrollbar-button:horizontal:decrement {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23F6C553" height="10" viewBox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path d="M2 5 L6 2 L6 8 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

/* Right arrow */
::-webkit-scrollbar-button:horizontal:increment {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23F6C553" height="10" viewBox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path d="M8 5 L4 2 L4 8 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

/* Firefox scrollbar styling */
* {
    scrollbar-color: var(--vault-gold) rgba(20, 20, 20, 0.9);
}

/* ============ ACCESSIBILITY ============ */
*:focus {
    outline: 2px solid var(--vault-yellow);
    outline-offset: 2px;
}