body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle, #fff0b3 0%, #ffd700 100%);
    overflow: hidden;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.atari {
    font-size: 280px;
    color: #ff0000;
    text-shadow: 5px 5px 0px #ffffff, 10px 10px 0px #ffd700, 15px 15px 40px rgba(255, 69, 0, 0.6);
    line-height: 1;
    animation: celebrate 0.5s infinite alternate;
}

.sugoi {
    font-size: 80px;
    color: #ff4500;
    font-weight: bold;
    letter-spacing: 0.5em;
    margin-top: 20px;
}

@keyframes celebrate {
    from { transform: scale(1) rotate(-2deg); }
    to { transform: scale(1.2) rotate(2deg); }
}

.confetti-piece {
    position: absolute;
    width: 15px;
    height: 15px;
    top: -20px;
    opacity: 0.8;
    z-index: 1;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(720deg);
    }
}
