@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Bebas+Neue&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: #f0f0f0;
    font-family: 'Share Tech Mono', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* Stripes intégrées */
    background-image: repeating-linear-gradient(-55deg,
            transparent,
            transparent 28px,
            rgba(255, 200, 0, 0.04) 28px,
            rgba(255, 200, 0, 0.04) 56px);
    background-attachment: fixed;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: min(90%, 700px);
}

.hazard-border {
    border: 4px solid #ffc800;
    padding: 3rem 4rem;
    position: relative;
    background: rgba(0, 0, 0, 0.6);
}

.hazard-border::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 200, 0, 0.2);
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #ffc800;
    border-style: solid;
}

.corner.tl {
    top: -8px;
    left: -8px;
    border-width: 3px 0 0 3px;
}

.corner.tr {
    top: -8px;
    right: -8px;
    border-width: 3px 3px 0 0;
}

.corner.bl {
    bottom: -8px;
    left: -8px;
    border-width: 0 0 3px 3px;
}

.corner.br {
    bottom: -8px;
    right: -8px;
    border-width: 0 3px 3px 0;
}

.warning-tape {
    background: #ffc800;
    color: #111;
    font-family: 'Bebas Neue', 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    padding: 6px 0;
    margin: 0 -4rem 2.5rem -4rem;
    text-align: center;
}
.warning-sign {
    font-size: 2em;
}

.biohazard-icon {
    font-size: 3.5rem;
    width: 1.3em;
    height: 1.3em;
    line-height: 1.1;
    display: inline-block;
    border: 2px solid currentColor;
    border-radius: 50%;
    margin-bottom: 1.8rem;
    filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.3));
}

.identity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.4rem;
}

@media (max-width: 600px) {
    .identity {
        flex-direction: column;
    }
}

.avatar-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #ffc800;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 1.6rem;
    opacity: 0.25;
}

h1 {
    font-family: 'Bebas Neue', monospace;
    font-size: 3.8rem;
    letter-spacing: 0.08em;
    line-height: 1;
}

h1 .marvin {
    color: #fff;
}

h1 .le {
    color: #ffc800;
}

h1 .rouge {
    color: #e03030;
}

.subtitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 3rem;
    margin: 2rem auto;
    font-size: 0.875rem;
    color: #999;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.subtitle span {
    flex: 1;
    white-space: nowrap;
    text-align: center;
}


.subtitle span:first-child {
    order: 0;
}

.subtitle span:last-child {
    order: 2;
}

.warning-box {
    border: 1px solid rgba(255, 200, 0, 0.3);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #bbb;
}

.warning-box .label {
    color: #ffc800;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

.warning-box em {
    color: #fff;
    font-style: normal;
}

.links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.links a {
    color: #ffc800;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 200, 0, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.links a:hover {
    color: #fff;
    border-color: #fff;
}

.blink {
    animation: blink 1.2s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.footer {
    margin-top: 2.5rem;
    font-size: 0.65rem;
    color: #666;
    letter-spacing: 0.1em;
}