body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #790101;
    color: #fff;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-size: 48px;
    color: #ff0000;
    margin-bottom: 20px;
}

.logo-container {
    margin: 20px 0;
}

.logo {
    width: 200px;
    height: auto;
}

.subtitle {
    font-size: 32px;
    color: #fff;
    margin: 20px 0;
}

.highlight {
    color: #00ff00;
}

.agency {
    font-size: 48px;
    color: #ff0000;
    text-shadow: 2px 2px 5px #fff;
    margin: 20px 0;
}

.message {
    font-size: 18px;
    color: #00ffff;
    line-height: 1.6;
    margin-top: 40px;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent, #000 70%);
    z-index: -1;
}

body::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0f0, #00f);
    opacity: 0.1;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% { transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0); }
}
