/* === LOBBY STYLES === */
.lobby-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 45, 45, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--leather-dark) 0%, #12100d 100%);
}

.lobby-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--leather-medium) 0%, transparent 100%);
    border-bottom: 1px solid var(--leather-highlight);
}

.game-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--parchment-dark);
    font-style: italic;
}

.lobby-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.lobby-card {
    background: var(--leather-medium);
    border: 1px solid var(--leather-highlight);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lobby-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    text-align: center;
}

.lobby-form {
    display: flex;
    flex-direction: column;
}

.lobby-footer {
    text-align: center;
    padding: 20px;
    color: var(--text-light);
    font-style: italic;
    border-top: 1px solid var(--leather-highlight);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .lobby-main {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    
    .lobby-card {
        max-width: 100%;
    }
    
    .game-title {
        font-size: 2rem;
    }
}