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

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.police-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0000, #0000ff, #ff0000, #0000ff);
    background-size: 400% 400%;
    filter: blur(20px);
    opacity: 0.3;
    animation: policeFlash 2s infinite alternate;
    z-index: -1;
}

@keyframes policeFlash {
    0% {
        background-position: 0% 50%;
        filter: blur(15px) brightness(0.6);
    }
    25% {
        background-position: 100% 50%;
        filter: blur(25px) brightness(0.4);
    }
    50% {
        background-position: 50% 0%;
        filter: blur(20px) brightness(0.7);
    }
    75% {
        background-position: 50% 100%;
        filter: blur(30px) brightness(0.3);
    }
    100% {
        background-position: 0% 0%;
        filter: blur(18px) brightness(0.5);
    }
}

.content {
    text-align: center;
    z-index: 10;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 8px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff0000, 0 0 40px #ff0000;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #0000ff, 0 0 40px #0000ff;
    }
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.discord {
    background: rgba(114, 137, 218, 0.3);
}

.discord:hover {
    background: rgba(114, 137, 218, 0.8);
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.6);
}

.roblox {
    background: rgba(0, 162, 255, 0.3);
}

.roblox:hover {
    background: rgba(0, 162, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.6);
}



.twitter {
    background: rgba(29, 161, 242, 0.3);
}

.twitter:hover {
    background: rgba(29, 161, 242, 0.8);
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.6);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
