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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF0000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.emoji-float {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.emoji-float:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.emoji-float:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.emoji-float:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.emoji-float:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 3px 3px 0 #FF0000, -3px -3px 0 #8B0000;
    animation: glitch 1s infinite;
    margin-bottom: 10px;
}

@keyframes glitch {
    0% {
        text-shadow: 3px 3px 0 #FF0000, -3px -3px 0 #8B0000;
    }
    25% {
        text-shadow: -3px 3px 0 #FF0000, 3px -3px 0 #8B0000;
    }
    50% {
        text-shadow: 3px -3px 0 #FF0000, -3px 3px 0 #8B0000;
    }
    75% {
        text-shadow: -3px -3px 0 #FF0000, 3px 3px 0 #8B0000;
    }
    100% {
        text-shadow: 3px 3px 0 #FF0000, -3px -3px 0 #8B0000;
    }
}

h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3rem;
    color: #fff;
    margin: 30px 0;
    font-style: italic;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #fff;
    border-radius: 50%;
    margin: 40px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .content {
        padding: 30px 20px;
    }
}
