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

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Bebas Neue', sans-serif;
    background: #0a0a0a;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: clamp(4rem, 20vw, 18rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.2),
        0 0 60px rgba(0, 255, 136, 0.1);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(0, 255, 136, 0.3),
            0 0 40px rgba(0, 255, 136, 0.2),
            0 0 60px rgba(0, 255, 136, 0.1);
    }
    to {
        text-shadow: 
            0 0 30px rgba(0, 255, 136, 0.5),
            0 0 60px rgba(0, 255, 136, 0.3),
            0 0 90px rgba(0, 255, 136, 0.2);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 15vw;
    }
}
