/* game/style.css */

.game-content {
    background-color: #fcfcfc;
    min-height: 100vh;
}

/* Hero Section */
.game-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#00b894 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.pixel-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #00b894;
    text-shadow: 4px 4px 0px #1a1a1a, 6px 6px 0px rgba(0, 184, 148, 0.3);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .pixel-title {
        font-size: 1.5rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* Maintenance Section */
.maintenance-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 1rem;
}

.maintenance-box {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid #eee;
    max-width: 500px;
    width: 100%;
}

.pixel-icon {
    font-size: 3rem;
    color: #00b894;
    margin-bottom: 1.5rem;
    animation: rotateWrench 2s infinite ease-in-out;
}

@keyframes rotateWrench {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
}

.maintenance-box h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    border: none;
    background: none;
    padding: 0;
}

.maintenance-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0;
}

/* Loading Bar Animation */
.loading-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: #00b894;
    width: 30%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: -30%;
    animation: loadingAnim 2s infinite linear;
}

@keyframes loadingAnim {
    0% { left: -30%; }
    100% { left: 100%; }
}

/* Footer alignment fix */
.site-footer {
    margin-top: 40px;
}
