body {
    margin: 0;
    padding: 0;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
}

.logo {
    width: 50%;
    max-width: 500px;
    min-width: 0;
    height: auto;
    z-index: 2;
    position: relative;
    margin-bottom: 40px;
    object-fit: contain;
}

.play-button {
    background: white;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    position: relative;
    min-width: 120px;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
}

/* Mobile devices */
@media (max-width: 768px) {
    .logo {
        width: 70%;
        margin-bottom: 30px;
    }
    .play-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo {
        width: 80%;
        margin-bottom: 20px;
    }
    .play-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .play-button {
        padding: 20px 60px;
        font-size: 24px;
    }
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}