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

body {
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.title {
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4facfe 0%, #8b53ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(79, 172, 254, 0.3),
                     0 0 40px rgba(139, 83, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(79, 172, 254, 0.5),
                     0 0 50px rgba(139, 83, 255, 0.5);
    }
}
