@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@500;700;900&display=swap');

:root {
    --brand-yellow: #f5c71a;
    --brand-blue: #0c4da2;
    --brand-white: #ffffff;
    --umbrella-red: var(--brand-yellow);
    --umbrella-red-bright: var(--brand-blue);
    --umbrella-green: var(--brand-yellow);
    --umbrella-dark: #050505;
    --umbrella-panel: #111111;
    --umbrella-border: #3d3d3d;
}

.umbrella-body {
    position: relative;
    font-family: 'Share Tech Mono', monospace;
}

.umbrella-body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999998;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.12),
        rgba(0, 0, 0, 0.12) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.35;
}

.umbrella-body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999997;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

.umbrella-title,
.boot-logo,
.terminal-title,
.terminal-section-title {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
}

.umbrella-motto {
    color: #aaa;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.biohazard-symbol {
    font-size: 2.5rem;
    color: var(--brand-yellow);
    text-shadow:
        0 0 12px rgba(245, 199, 26, 0.6),
        0 0 24px rgba(12, 77, 162, 0.3);
    animation: biohazard-pulse 3s ease-in-out infinite;
}

@keyframes biohazard-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.umbrella-classified {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid var(--brand-yellow);
    color: var(--brand-white);
    font-size: 0.7rem;
    letter-spacing: 2px;
    background: rgba(12, 77, 162, 0.2);
}

.umbrella-watermark {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 5rem;
    color: rgba(12, 77, 162, 0.08);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

.hero {
    background:
        linear-gradient(135deg, rgba(5, 10, 25, 0.94), rgba(12, 77, 162, 0.35)),
        url('/web/img/brique.png') center/cover;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(12, 77, 162, 0.04) 2px,
            rgba(12, 77, 162, 0.04) 4px
        );
    pointer-events: none;
}

.umbrella-title {
    text-shadow:
        0 0 20px rgba(245, 199, 26, 0.35),
        2px 2px 0 rgba(0, 0, 0, 0.8);
}

.umbrella-red {
    text-shadow:
        0 0 30px rgba(12, 77, 162, 0.55),
        0 0 60px rgba(12, 77, 162, 0.25);
}

.terminal-box {
    border-left: 4px solid var(--brand-yellow);
    box-shadow:
        inset 0 0 0 1px #1f1f1f,
        0 0 20px rgba(12, 77, 162, 0.15);
}

.boot-content .boot-line {
    text-shadow: 0 0 8px rgba(245, 199, 26, 0.35);
}

.boot-logo {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 4px;
}

#boot-screen {
    background:
        radial-gradient(circle at 50% 40%, #0a1a3a 0%, #000 70%);
}

.hud-header {
    background: linear-gradient(180deg, #1a2a4a, #0d1528);
}

.card-clip {
    border-color: #4a4a4a;
}

.card-clip:hover {
    box-shadow:
        0 0 30px rgba(12, 77, 162, 0.4),
        inset 0 0 0 1px var(--brand-yellow);
}

.terminal-contact {
    border-color: var(--brand-blue);
    box-shadow:
        inset 0 0 0 1px #1f1f1f,
        0 0 25px rgba(12, 77, 162, 0.2);
}

.terminal-contact button {
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--brand-yellow);
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.footer-copy {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #666;
}

.footer-copy::before {
    content: '◆ ';
    color: var(--brand-yellow);
}
