import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

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

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    min-height: 100vh;
    font-family: 'Courier Prime', monospace;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ff0000" opacity="0.03"/><circle cx="80" cy="60" r="1" fill="%23ff0000" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23ff0000" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.blood-drop {
    position: absolute;
    width: 20px;
    height: 30px;
    background: #cc0000;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    animation: drip 3s infinite;
}

.blood-drop-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.blood-drop-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.blood-drop-3 {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes drip {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(20px) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

.logo {
    margin-bottom: 60px;
}

.ascii-art {
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    line-height: 1.2;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    white-space: pre;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
}

.user-profiles {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 60px 0;
}

.profile {
    text-align: center;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid #ff0000;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

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

.profile h3 {
    color: #ff0000;
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ff0000;
}

.profile p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #ff0000);
}

.warning {
    margin: 60px 0;
    padding: 30px;
    border: 2px solid #ff0000;
    border-radius: 10px;
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.warning p {
    margin-bottom: 15px;
    font-size: 16px;
}

.domains {
    margin-top: 20px;
}

.domains span {
    color: #ff0000;
    font-weight: bold;
    text-shadow: 0 0 5px #ff0000;
}

.action-button {
    margin: 60px 0;
}

.main-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border: none;
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    font-family: 'Courier Prime', monospace;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.main-btn:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.7);
}

.footer-stats {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-stats p {
    margin: 10px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-stats span {
    color: #ff0000;
    font-weight: bold;
}

.online {
    color: #00ff00 !important;
    text-shadow: 0 0 10px #00ff00;
}

/* Responsive */
@media (max-width: 768px) {
    .user-profiles {
        flex-direction: column;
        gap: 40px;
    }
    
    .ascii-art {
        font-size: 8px;
    }
    
    .main-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}
