body.play-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.play-page .play-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Brand Logo Section */
.play-page .brand-logo-section {
    margin-bottom: 40px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-page .brand-logo {
    width: auto;
    height: 80px;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.play-page .brand-text {
    display: none;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.play-page .progress-section {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
}

.play-page .progress-bar-container {
    width: 100%;
    height: 12px;
    background: #2d2d44;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.play-page .progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #8bc34a, #4caf50);
    background-size: 200% 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    transition: width 0.05s linear;
    animation: play-shimmer 2s infinite linear;
}

@keyframes play-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.play-page .progress-percent {
    margin-top: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.play-page .storefront-header {
    display: none;
    text-align: center;
    padding: 30px 20px 10px;
    max-width: 800px;
    margin: 0 auto;
}

.play-page .storefront-logo {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.play-page .storefront-message {
    font-size: 1.1rem;
    color: #d0d0e0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
}

.play-page .scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    gap: 2px;
}

.play-page .arrow {
    width: 24px;
    height: 24px;
    border-right: 4px solid #4caf50;
    border-bottom: 4px solid #4caf50;
    transform: rotate(45deg);
    animation: arrow-wave 1.8s ease-in-out infinite;
    opacity: 0.4;
}

.play-page .arrow-1 {
    animation-delay: 0s;
}

.play-page .arrow-2 {
    animation-delay: 0.25s;
}

.play-page .arrow-3 {
    animation-delay: 0.5s;
}

@keyframes arrow-wave {
    0%,
    100% {
        opacity: 0.4;
        transform: rotate(45deg) translateY(0);
        border-color: #3d8b40;
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(4px);
        border-color: #8bc34a;
        filter: drop-shadow(0 0 6px rgba(76, 175, 80, 0.6));
    }
}

.play-page .storefront-container {
    display: none;
    padding: 0 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .play-page .brand-logo {
        height: 60px;
        max-width: 200px;
    }
    .play-page .brand-text {
        font-size: 1.8rem;
    }
    .play-page .progress-section {
        max-width: 280px;
    }
    .play-page .progress-bar-container {
        height: 10px;
    }
    .play-page .progress-percent {
        font-size: 1.1rem;
    }
    .play-page .storefront-logo {
        max-width: 140px;
        max-height: 50px;
    }
    .play-page .storefront-message {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .play-page .progress-section {
        max-width: 500px;
    }
    .play-page .progress-bar-container {
        height: 14px;
    }
}
