.lobby-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
}

.lobby-header {
    text-align: center;
    margin-bottom: 48px;
}

.lobby-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.title-main { 
    color: #f59e0b; 
}

.title-sub { 
    color: white; 
}

.lobby-subtitle {
    font-size: 0.875rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Game Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 48px;
}

/* Personal Message */
.lobby-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lobby-message p {
    font-size: 1rem;
    color: #dddddf;
    font-style: italic;
    line-height: 1.6;
}

/* Game Tile */
.game-tile {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    border: 2px solid #3f3f46;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.game-tile:hover {
    transform: translateY(-8px);
    border-color: #f59e0b;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.game-tile.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.game-tile.coming-soon:hover {
    transform: none;
    border-color: #3f3f46;
    box-shadow: none;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.game-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.game-description {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 8px;
}

.game-players {
    font-size: 0.75rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #3b82f6;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 640px) {
    .lobby-title {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}
