* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
}

.title {
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 75, 75, 0.8),
        0 0 40px rgba(255, 75, 75, 0.6),
        0 0 80px rgba(255, 75, 75, 0.4);
    letter-spacing: 0.1em;
    animation: glow 2s ease-in-out infinite alternate;
}

.title span {
    color: #ff4b4b;
    display: block;
    font-size: 1.2em;
    margin-top: -20px;
}

.subtitle {
    color: #a0a0ff;
    font-size: 1.8rem;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Glowing animation */
@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 75, 75, 0.8),
            0 0 40px rgba(255, 75, 75, 0.6),
            0 0 80px rgba(255, 75, 75, 0.4);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 75, 75, 1),
            0 0 60px rgba(255, 75, 75, 0.8),
            0 0 100px rgba(255, 75, 75, 0.6);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 4rem;
    }
    .subtitle {
        font-size: 1.4rem;
    }
}