body {
    margin: 0;
    padding: 0;
    background-color: #1B1B1B;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle, #2A2A2A, #1B1B1B);
    color: #d0d0d0;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #D4AF37;
    margin-bottom: 5px;
    font-family: 'Manbow', serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 2.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 10px;
}

.zone {
    aspect-ratio: 16 / 9;
    background-color: #2A2A2A;
    border-radius: 15px;
    border: 4px solid #5D0D0D;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.zone:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: #D4AF37;
    z-index: 10;
}

.zone-content {
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: bold;
    z-index: 2;
}

/* Glassy shine effect */
.zone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 10px 10px 50% 50% / 10px 10px 20px 20px;
    pointer-events: none;
}

/* Scanline effect (subtle) */
.zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.02) 2px,
        rgba(0,0,0,0.02) 4px
    );
    pointer-events: none;
    z-index: 1;
}

footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.wii-bar {
    background: linear-gradient(to bottom, #5D0D0D, #3A0808);
    padding: 10px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.2);
    border: 1px solid #8B1A1A;
}

.wii-btn {
    background: radial-gradient(circle at 50% 0%, #D4AF37, #B8860B);
    border: 1px solid #8B6914;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #1B1B1B;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.2s;
}

.wii-btn:hover {
    background: #E6C15F;
    color: #1B1B1B;
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.date-time {
    font-size: 1.5rem;
    color: #D4AF37;
    font-family: monospace;
    text-shadow: 1px 1px 0 #000;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
