/* Landing page styles */
.landing-page {
    text-align: center;
    background: transparent;
    border-radius: 15px;
    padding: 40px;
    min-width: 1100px;
}

.landing-page h1 {
    font-size: 4rem;
    margin-bottom: 28px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.landing-page p {
    font-size: 1.4rem;
    margin-bottom: 36px;
    opacity: 0.9;
}

.landing-page .input-group {
    margin: 28px 0;
}

.landing-page #landingError {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .landing-page h1 {
        font-size: 2.5rem;
    }
    
    .landing-page {
        padding: 30px 20px;
    }
}

/* Server status indicator */
.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 1rem;
    color: #c0c0c0;
    letter-spacing: 0.5px;
}

.server-status__led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
    flex-shrink: 0;
    transition: background 0.4s, box-shadow 0.4s;
}

.server-status__led--online {
    background: #4caf50;
    box-shadow: 0 0 7px 2px rgba(76, 175, 80, 0.7);
}

.server-status__led--offline {
    background: #e53935;
    box-shadow: 0 0 7px 2px rgba(229, 57, 53, 0.5);
}