
body {
    margin: 0;
    background: radial-gradient(circle at center, #0b0f1a 0%, #000 70%);
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding-top: 60px;
}


header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 14px;
    letter-spacing: 4px;
    color: #bdbdbd;
}

.agency-name {
    font-size: 28px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
}


.warning-box {
    margin-top: 60px;
    padding: 30px;
    border: 1px solid #ff0000;
    background-color: rgba(255, 0, 0, 0.05);
}

.warning-box h2 {
    color: #ff3c3c;
    margin-bottom: 20px;
}

.warning-box p {
    line-height: 1.6;
}


.glitch {
    font-size: 48px;
    font-weight: bold;
    position: relative;
    margin-top: 80px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #00f7ff;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.glitch::before {
    animation: glitchTop 2s infinite linear alternate-reverse;
    color: #ff00c8;
}

.glitch::after {
    animation: glitchBottom 1.5s infinite linear alternate-reverse;
    color: #00ff9d;
}

@keyframes glitchTop {
    0% { clip-path: inset(0 0 80% 0); transform: translate(-2px, -2px); }
    100% { clip-path: inset(0 0 60% 0); transform: translate(2px, 2px); }
}

@keyframes glitchBottom {
    0% { clip-path: inset(80% 0 0 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(60% 0 0 0); transform: translate(-2px, -2px); }
}


.overview {
    margin-top: 60px;
    line-height: 1.8;
    font-size: 16px;
}


.launch-btn {
    margin-top: 50px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.launch-btn:hover {
    background: #00f7ff;
    color: black;
}


footer {
    margin-top: 100px;
    padding: 20px;
    font-size: 12px;
    color: #555;
    border-top: 1px solid rgba(255,255,255,0.1);
}


body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(0,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveGrid 40s linear infinite;
    top: -50%;
    left: -50%;
    z-index: -1;
}

@keyframes moveGrid {
    from { transform: translate(0,0); }
    to { transform: translate(100px,100px); }
}
