body#welcome-page {
    margin: 0;
    height: 100vh;
    font-family: 'Press Start 2P', monospace;
    background-image: url("art1.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark tint layer */
body#welcome-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

/* Floating star animation layer */
.overlay-stars {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ff69b4 1px, transparent 1px),
                      radial-gradient(#b084ff 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    animation: moveStars 40s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes moveStars {
    from { background-position: 0 0, 0 0; }
    to { background-position: 200px 400px, -300px 600px; }
}

.welcome-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px;
    background: rgba(20, 0, 40, 0.6);
    border: 3px solid #ff69b4;
    box-shadow: 0 0 40px #b084ff, 0 0 80px #ff69b4;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.intro {
    font-family: 'Creepster', cursive;
    font-size: 40px;
    color: #b084ff;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.main-title {
    font-size: 70px;
    color: #fff38c;
    text-shadow: 0 0 15px #ff69b4, 0 0 25px #b084ff;
    margin-bottom: 50px;
}

/* Demon star decorations */
.decor {
    position: absolute;
    font-size: 22px;
    color: #ff69b4;
    animation: float 4s ease-in-out infinite alternate;
}

.top-left { top: -25px; left: -25px; }
.top-right { top: -25px; right: -25px; }
.bottom-left { bottom: -25px; left: -25px; }
.bottom-right { bottom: -25px; right: -25px; }

@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(10px); }
}

.enter-button {
    display: inline-block;
    padding: 20px 70px;
    font-size: 18px;
    background: linear-gradient(45deg, #ff69b4, #b084ff);
    color: black;
    border: 3px solid #fff38c;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Press Start 2P', monospace;
}

.enter-button:hover {
    background: linear-gradient(45deg, #b084ff, #ff69b4);
    color: #fff;
    box-shadow: 0 0 20px #ff69b4, 0 0 40px #b084ff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .welcome-container {
        padding: 50px 20px;
    }

    .main-title {
        font-size: 50px;
    }

    .intro {
        font-size: 28px;
    }

    .enter-button {
        font-size: 14px;
        padding: 16px 50px;
    }
}