﻿body {
    background-color: #080808;
    color: #d32f2f;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

.icon {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 0px #000, 4px 4px 10px rgba(211, 47, 47, 0.6);
    position: relative;
    animation: glitch 2s infinite;
}

p {
    color: #888;
    font-size: 1.2rem;
    letter-spacing: 2px;
    max-width: 600px;
    line-height: 1.5;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0,0);
        opacity: 1;
    }

    2% {
        transform: translate(-2px, 1px);
        opacity: 0.8;
    }

    4% {
        transform: translate(2px, -1px);
        opacity: 0.9;
    }

    6% {
        transform: translate(0,0);
        opacity: 1;
    }

    100% {
        transform: translate(0,0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .icon {
        font-size: 3rem;
    }

    p {
        font-size: 1rem;
        padding: 0 20px;
    }
}
