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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.5;
    background-image: radial-gradient(circle at 20% 30%, rgba(40, 40, 40, 0.8) 0%, transparent 20%),
                      radial-gradient(circle at 80% 70%, rgba(60, 60, 60, 0.6) 0%, transparent 20%);
}

.container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.fbi-logo {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fbi-logo .shield {
    width: 180px;
    height: 200px;
    background-color: #fff;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.fbi-logo .shield:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background-color: #0a3161;
}

.fbi-logo .shield:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background-color: #bd0a2d;
}

.fbi-logo .letters {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 70px;
    font-weight: bold;
    z-index: 10;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fbi-logo .text {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fbi-logo .text span {
    color: #bd0a2d;
}

@media (max-width: 768px) {
    .fbi-logo .shield {
        width: 150px;
        height: 170px;
    }
    
    .fbi-logo .letters {
        font-size: 60px;
    }
    
    .fbi-logo .text {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .fbi-logo .shield {
        width: 120px;
        height: 140px;
        margin-bottom: 15px;
    }
    
    .fbi-logo .letters {
        font-size: 50px;
    }
    
    .fbi-logo .text {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

.warning-content {
    background-color: rgba(20, 20, 20, 0.9);
    border: 2px solid #bd0a2d;
    border-radius: 5px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 0 25px rgba(189, 10, 45, 0.3);
    text-align: left;
    max-width: 800px;
    width: 100%;
}

.warning-content h1 {
    color: #bd0a2d;
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ddd;
}

.warning-content .highlight {
    color: #fff;
    font-weight: bold;
    background-color: rgba(189, 10, 45, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

.warning-content .penalty {
    border-left: 4px solid #bd0a2d;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #fff;
}

@media (max-width: 768px) {
    .warning-content {
        padding: 30px;
    }
    
    .warning-content h1 {
        font-size: 32px;
    }
    
    .warning-content p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .warning-content {
        padding: 20px;
    }
    
    .warning-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .warning-content p {
        font-size: 16px;
    }
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
    text-align: center;
    padding: 15px;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid #333;
}

.footer a {
    color: #bd0a2d;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.blink {
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(189, 10, 45, 0.5), transparent);
    z-index: 100;
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

.seal {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.seal-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #bd0a2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.7);
}

.seal-circle:before {
    content: "★";
    color: #bd0a2d;
    font-size: 40px;
}

.seal-circle:after {
    content: "FEDERAL BUREAU OF INVESTIGATION";
    position: absolute;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 10px;
}

.official-notice {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .seal-circle {
        width: 100px;
        height: 100px;
    }
    
    .seal-circle:before {
        font-size: 30px;
    }
    
    .seal-circle:after {
        font-size: 8px;
    }
}