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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(120, 50, 150, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(80, 30, 120, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(60, 20, 100, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, #0a0015 0%, #1a0b2e 25%, #2d1b4e 50%, #1a0b2e 75%, #0a0015 100%);
    font-family: 'Noto Sans', 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

body::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(255, 255, 255, 0.02) 40%, transparent 50%),
        radial-gradient(ellipse at center, transparent 20%, rgba(200, 150, 255, 0.03) 35%, transparent 45%);
    transform: rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: fallingStar 5s linear infinite;
    z-index: 2;
}

@keyframes fallingStar {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-100vw, 100vh);
        opacity: 0;
    }
}

.container {
    text-align: center;
    position: relative;
    z-index: 100;
}

.word-line {
    margin: 20px 0;
}

.button-container {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-family: 'Noto Sans', 'Arial', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 150px;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.word {
    display: inline-block;
    font-size: 5rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Caveat Brush', 'Arial', cursive;
}

.word:hover {
    transform: scale(1.1);
    color: #ffdd00;
    text-shadow: 0 0 20px rgba(255, 221, 0, 0.5);
}

@media (max-width: 768px) {
    .word {
        font-size: 3rem;
    }
}
